Skip to main content
GET
Query Task

Query Task

After submitting a Jimeng unified video task, query its progress and result via GET /v1/video/query. The query parameter uses id, whose value is the task ID returned by Create Video.
  • The route entry is GET /v1/video/query.
  • The task ID is passed in through the Query parameter id.
  • The returned structure includes fields such as status, progress, and video_url.

Method and Path

Request Example

Response Example

Authentication

Query Parameters

id
string
required
Task ID, which is the same as the task_id returned by the creation API.

Response

id
string
Task ID.
status
string
Task status; common values include processing, failed, and completed.
progress
integer
Progress percentage (0-100).
created_at
integer
Creation time (Unix timestamp).
completed_at
integer
Completion time (Unix timestamp), returned only when the task is completed.
video_url
string
Video download URL, returned only when the status is completed.
thumbnail_url
string
Thumbnail URL, optional field.