Skip to main content
GET
/
ent
/
v2
/
tasks
/
{task_id}
/
creations
Query tasks(Vidu)
curl --request GET \
  --url https://api.aiid.edu.kg/ent/v2/tasks/{task_id}/creations \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "err_code": "<string>",
  "credits": 123,
  "payload": "<string>",
  "creations": [
    {
      "id": "<string>",
      "url": "<string>",
      "cover_url": "<string>",
      "watermarked_url": "<string>"
    }
  ],
  "task_id": "<string>"
}

Authorizations

Authorization
string
header
required

Use Bearer Token authentication. Format: Authorization: Bearer sk-xxxxxx

Path Parameters

task_id
string
required

Task ID, from the task_id returned when creating the task.

Response

200 - application/json

Query successful

id
string

Task ID.

state
enum<string>

Task status. Common values: created, queueing, processing, success, failed.

Available options:
created,
queueing,
processing,
success,
failed
err_code
string
credits
integer

Points consumed for this task.

payload
string
creations
object[]
task_id
string

The task ID returned when creating a task, used to query the task.