Query Task
Query the status and results of a single video generation, H3-Context-IR, or video regeneration task within the last 7 days by task_id.
Authorizations
Pass Authorization: Bearer <token> in the request header.
Path Parameters
The task ID to query (the task_id returned when creating a task).
Response
Returns task_id upon successful creation. Use this task_id to call the query task API to retrieve task status and results.
Query task success response example
{ "task": { "id": "424010985738629", "model": "MiniMax-H3", "status": "succeeded", "created_at": 1785125529, "updated_at": 1785125946, "content": { "url": "https://your-cdn.example.com/h3-generated-2k-output.mp4" }, "resolution": "2K", "duration": 5, "usage": { "total_seconds": 5, "input_seconds": 0, "output_seconds": 5, "input_image_count": 0 }, "ratio": "16:9", "task_type": "generation", "modality": "video" } }
The task object returned by the H3 shared task query and list API.