Skip to content

Query: Task Results

Overview

  • Method: GET
  • Path: /task/{task_id}
  • Content-Type: application/json
  • Tags: Video Models (Video) / Vidu Video

Authentication

  • Header: Authorization: Bearer <token>

Path Parameters

ParameterTypeRequiredDescription
task_idstringYesTask ID

Request Example

bash
curl -X GET "https://api.gpt.ge/task/809413373237157888" \
  -H "Authorization: Bearer sk-xxxx"

Success Response Example (200)

json
{
  "id":"817971131377016832",
  "state":"success",
  "err_code":"",
  "creations":[
    {
      "id":"817971246397415422",
      "url":"https://prod-ss-vidu.../video.mp4",
      "cover_url":"https://prod-ss-vidu.../cover.jpeg",
      "watermarked_url":""
    }
  ]
}