1. MiniMax H3
xiaoyahub doces
  • MiniMax H3
    • Create a MiniMax H3 video task
      POST
    • Get a MiniMax H3 video task
      GET
    • List MiniMax H3 video tasks
      GET
    • Cancel a MiniMax H3 video task
      DELETE
    • Download a MiniMax H3 video result
      GET
  1. MiniMax H3

List MiniMax H3 video tasks

GET
/minimax/v2/query/video_generation
分页查询当前 XiaoyaHub API Key 所属用户的 MiniMax H3 视频任务。列表不会额外返回视频下载地址,需要再调用单任务查询接口。

请求参数

Authorization
Bearer Token
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
or
Query 参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/minimax/v2/query/video_generation?page_num=undefined&page_size=undefined&filter.status=undefined&filter.model=undefined&filter.task_type=undefined' \
--header 'Accept;' \
--header 'Authorization: Bearer <token>'

返回响应

🟢200成功
application/json
Current user's MiniMax H3 tasks
Bodyapplication/json

示例
{
    "items": [
        {
            "id": "string",
            "model": "MiniMax-H3",
            "status": "queued",
            "error": {
                "code": "string",
                "message": "string"
            },
            "created_at": 0,
            "updated_at": 0,
            "content": {
                "prompt": "string",
                "url": "http://example.com"
            },
            "resolution": "768P",
            "duration": 4,
            "usage": {
                "total_seconds": 0,
                "output_seconds": 0
            },
            "ratio": "adaptive",
            "task_type": "generation",
            "modality": "video",
            "estimated_remaining_seconds": 0
        }
    ],
    "total": 0
}
🔴500服务器错误
修改于 2026-09-04 07:06:43
上一页
Get a MiniMax H3 video task
下一页
Cancel a MiniMax H3 video task
Built with