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

Get a MiniMax H3 video task

GET
/minimax/v2/query/video_generation/{task_id}
根据任务 ID 查询状态和结果。任务成功后 task.content.url 提供受鉴权保护的视频下载地址;estimated_remaining_seconds 仅用于进度展示,终态返回 0。

请求参数

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

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/' \
--header 'Accept;' \
--header 'Authorization: Bearer <token>'

返回响应

🟢200成功
application/json
Current task state
Bodyapplication/json

示例
{
    "task": {
        "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
    }
}
🔴500服务器错误
修改于 2026-09-04 07:06:43
上一页
Create a MiniMax H3 video task
下一页
List MiniMax H3 video tasks
Built with