Skip to main content
GET
cURL
Use this endpoint after you create a MiniMax H3 video task. The response includes video_url when the task is completed.

Check these fields

  • status is queued, in_progress, completed, or failed.
  • progress is a coarse completion percentage from 0 through 100.
  • video_url appears when the task is completed.
  • error appears when the task fails.

Poll the task

1

Create the task first

Start with Create a MiniMax H3 video and store the returned id.
2

Retrieve the task state

Send the task ID to this endpoint until status is completed or failed.
3

Download the MP4 file

When status is completed, call Download MiniMax H3 video content.

Authorizations

Authorization
string
header
required

Bearer authentication. Use your CometAPI API key.

Path Parameters

task_id
string
required

Task ID returned by POST /v1/videos.

Response

200 - application/json

Current MiniMax H3 video task state.

id
string
required

Task ID. Use this value as task_id in retrieve and content requests.

Example:

"<task_id>"

object
string
required

Object type for the asynchronous video task.

Allowed value: "video"
model
string
required

Model ID that the task uses.

Allowed value: "minimax-h3"
status
enum<string>
required

Task lifecycle status. Poll until the value is completed or failed.

Available options:
queued,
in_progress,
completed,
failed
progress
integer
required

Task progress as a coarse percentage.

Required range: 0 <= x <= 100
created_at
integer<int64>
required

Task creation time as a Unix timestamp in seconds.

task_id
string

Compatibility alias for id. This field can be omitted from retrieve responses.

Example:

"<task_id>"

completed_at
integer<int64>

Unix timestamp returned by the platform. Use status, not this field, to decide when polling can stop.

expires_at
integer<int64>

Result expiration time as a Unix timestamp in seconds when the task provides one.

video_url
string<uri>

Video delivery URL. This field appears on completed tasks.

Example:

"https://<provider-cdn>/<video_id>.mp4"

error
object

Failure details. This field appears when the task fails.