Skip to main content
GET
Vidu Task Query

Vidu Task Query

The official Vidu-format task query API is used to query the status and results of video generation tasks.
  • The route entry is GET /vidu/ent/v2/task/{task_id}/creations.
  • Specify the task to query through the path parameter task_id.
  • Returns the task status (processing, completed, failed) and the video download URL.

Method and Path

Request Example

Request Parameters

task_id
string
required
Task ID. The task_id returned when the task was created.

Authentication

Response Example

Response

id
string
Task ID.
status
string
Task status. Possible values: processing (in progress), completed (completed), failed (failed).
video_url
string
Video download URL (returned only when the status is completed).
status_update_time
integer
Status update timestamp (Unix timestamp).

Status Description