Skip to main content
GET
Jimeng Task Status Query

Jimeng Task Status Query

OpenAI-format query entry. If the task was submitted via POST /v1/video/create, please use Query Task. After a Jimeng series task is submitted, query it via GET /v1/videos/{task_id}.
  • The query path is GET /v1/videos/{task_id}.
  • A successful response returns an OpenAI-style video object.
  • After the task is completed, you can read the result from video_url.

Method and Path

Request Example

Response Example

Authentication

Path Parameters

task_id
string
required
Video task ID.

Response

id
string
Task ID.
object
string
Fixed as video.
model
string
Model name.
status
string
Task status: queued, processing, completed, failed, cancelled.
progress
integer
Progress percentage (0-100).
created_at
integer
Creation timestamp.
completed_at
integer
Completion timestamp (returned after the task is completed).
video_url
string
Video result URL (returned after the task is completed).

Status Description