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モード
認証
APIキーをリクエストヘッダーの x-api-key に指定してください。
x-api-key: YOUR_API_KEYAPIキーを表示するタスクを送信
モデル生成タスクを作成します。
リクエスト
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
- モデルまたはタスクが見つかりませんでした
読み込み中…