GET
/
minimax-hailuo
/
status
/
{TaskID}
Get Task Status
curl --request GET \
  --url https://api.unifically.com/minimax-hailuo/status/{TaskID} \
  --header 'Authorization: Bearer <token>'
{
    "code": 200,
    "data": {
        "status": "processing",
        "task_id": "9fab6ff9-e7b4-4f93-9ca0-a21938e65c9e",
        "error": {}
    }
}
Check the status of a Minimax-Hailuo video generation task.

Request

curl -X GET 'https://api.unifically.com/minimax-hailuo/status/TASKID' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Response

{
    "code": 200,
    "data": {
        "status": "processing",
        "task_id": "9fab6ff9-e7b4-4f93-9ca0-a21938e65c9e",
        "error": {}
    }
}

Response Fields

success
boolean
Whether the request was successful
data
object
Response data
status
string
Current task status: processing, completed, failed
task_id
string
Unique identifier for this generation task
video_url
string
URL of the generated video (only present when status is completed)
seed
number
Seed used for the generation (only present when status is completed)