Version: v1.0.0 | Last Updated: 2026-08-13 This platform fully supports the MiniMax Video Generation V2 (MiniMax-H3) official API. Requests and responses are transparently proxied, and all parameter semantics remain consistent with the official API.
GET https://platform.dataeyes.ai/hailuo/v2/query/video_generation| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page_num | integer | No | 1 | Page number, starting from 1 |
page_size | integer | No | 20 | Page size |
filter.status | string (enum) | No | — | Filter by status: queued / running / succeeded / failed / cancelled |
filter.task_ids | array | No | — | Filter by task IDs; repeat the parameter to pass multiple |
filter.model | string | No | — | Filter by model name (a single model), e.g. MiniMax-H3 |
filter.task_type | string (enum) | No | — | Filter by task type: generation / regeneration / h3_context_ir |
{
"items": [
{
"id": "424635601932571",
"model": "MiniMax-H3",
"status": "succeeded",
"created_at": 1785225940,
"updated_at": 1785226100,
"content": {
"url": "https://cdn.example.com/output.mp4"
},
"resolution": "2K",
"duration": 5,
"usage": {
"total_seconds": 5,
"input_seconds": 0,
"output_seconds": 5,
"input_image_count": 0
},
"ratio": "adaptive",
"task_type": "generation"
},
{
"id": "424635601932588",
"model": "MiniMax-H3",
"status": "running",
"created_at": 1785225940,
"updated_at": 1785226100,
"resolution": "2K",
"duration": 10,
"usage": {
"total_seconds": 0,
"input_seconds": 0,
"output_seconds": 0,
"input_image_count": 0
},
"ratio": "9:16",
"task_type": "generation"
}
],
"total": 476
}| Field | Type | Description |
|---|---|---|
items | array | Task list; each element has the same structure as the task object in Query Task |
total | integer | Total number of tasks matching the filters |