Minimax H3
Minimax
参考生视频文生视频图生视频$0.07 起/ s
Minimax H3 支持多镜头序列,并具备原生音画同步、精准的镜头控制和高级关键帧编辑,以实现连贯的叙事。
输入
模式
请填写必填字段以查看价格
Text To Video · 2k · 5s
输出
空闲| 模式 | 时长 | 分辨率 | 类型 | 价格 |
|---|---|---|---|---|
| — | output second | 768p | 图生视频 | $0.07 / s |
| 参考生视频 | $0.07 / s | |||
| 文生视频 | $0.07 / s | |||
| 2k | 图生视频 | $0.12 / s | ||
| 参考生视频 | $0.12 / s | |||
| 文生视频 | $0.12 / s | |||
| with video ref | (output + input video) second | 768p | 参考生视频 | $0.07 / s |
| 2k | 参考生视频 | $0.12 / s |
端点
POST
https://pollo.ai/api/platform/v1/generation/minimax/minimax-h3/video模式
验证
在 x-api-key 请求标头中传递您的 API 密钥。
x-api-key: YOUR_API_KEY查看 API 密钥提交任务
创建模型生成任务。
请求
curl -X POST 'https://pollo.ai/api/platform/v1/generation/minimax/minimax-h3/video' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"resolution": "2k",
"duration": 5,
"aspectRatio": "auto"
}
}'回复(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}检查状态
轮询任务状态端点,直到生成完成。
HTTP 请求
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEY回复(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"credit": 12,
"costUsd": 0.12,
"generations": [
{
"id": "generation_01",
"createdDate": "2026-07-13T07:00:00.000Z",
"updatedDate": "2026-07-13T07:00:12.000Z",
"status": "succeeded",
"failMsg": null,
"url": "https://example.com/output.mp4",
"mediaType": "video"
}
]
}Webhook
(可选)包含 webhookUrl,以便在任务成功或失败时接收回调。
可选请求字段
{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"resolution": "2k",
"duration": 5,
"aspectRatio": "auto"
},
"webhookUrl": "https://example.com/webhooks/pollo"
}模式
输入所选端点和模式的字段。
| 场地 | 类型 | 必需的 | 描述 |
|---|---|---|---|
| prompt | string | 支持 | Text prompt describing the content to generate. |
| resolution | string | 不 | Output resolution of the generated media (e.g. 720p, 1080p). |
| duration | integer | 不 | The duration of the generated video, in seconds. |
| aspectRatio | string | 不 | Output aspect ratio, as width:height (e.g. 16:9). |
错误
常见的公共 API 响应代码。
- 400
- 输入或模型约束无效
- 401
- API密钥缺失或无效
- 403
- API密钥无访问权限
- 404
- 未找到模型或任务
模型文档即将推出。