GET
/
tongyi
/
video
/
{taskId}
curl -X GET https://api.example.com/tongyi/video/task_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "task_id": "task_123456",
  "status": "completed",
  "video_url": "https://example.com/video.mp4",
  "thumbnail_url": "https://example.com/thumbnail.jpg",
  "created_at": "2024-01-01T00:00:00Z",
  "completed_at": "2024-01-01T00:05:00Z"
}
Query the status of a Tongyi Wanxiang video generation task.

Path Parameters

taskId
string
required
Task ID returned from the create video endpoint.
curl -X GET https://api.example.com/tongyi/video/task_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "task_id": "task_123456",
  "status": "completed",
  "video_url": "https://example.com/video.mp4",
  "thumbnail_url": "https://example.com/thumbnail.jpg",
  "created_at": "2024-01-01T00:00:00Z",
  "completed_at": "2024-01-01T00:05:00Z"
}