- サードパーティ
- ゼロデータ保持
リアルな人の動き、シネマティックな VFX、表現力のあるキャラクター、プロンプトとスタイルへの強い追従に最適化した高忠実度の動画生成モデルです。テキストから動画、画像から動画のワークフローに対応します。
| モデル情報 | |
|---|---|
| 利用規約とライセンス | リンク ↗ |
| 詳細情報 | リンク ↗ |
| ゼロデータ保持 | はい |
| 料金 | Cloudflare ダッシュボードで料金を見る ↗ |
const response = await env.AI.run(
'minimax/hailuo-2.3',
{
prompt: 'A golden retriever playing fetch on a sandy beach at sunset',
duration: 6,
fast_pretreatment: false,
prompt_optimizer: true,
resolution: '768P',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "minimax/hailuo-2.3",
"input": {
"prompt": "A golden retriever playing fetch on a sandy beach at sunset",
"duration": 6,
"fast_pretreatment": false,
"prompt_optimizer": true,
"resolution": "768P"
}
}'{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"status": "Success",
"task_id": "388507504709991",
"video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/97d0c2d0-45ab-4ce8-a1f4-177401f43073/output.mp4"
},
"state": "Completed"
}高解像度 — より高品質な出力向けの 1080P 動画です
const response = await env.AI.run(
'minimax/hailuo-2.3',
{
prompt:
'A professional chef preparing sushi in a traditional Japanese kitchen, detailed close-up shots',
duration: 6,
fast_pretreatment: false,
prompt_optimizer: true,
resolution: '1080P',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "minimax/hailuo-2.3",
"input": {
"prompt": "A professional chef preparing sushi in a traditional Japanese kitchen, detailed close-up shots",
"duration": 6,
"fast_pretreatment": false,
"prompt_optimizer": true,
"resolution": "1080P"
}
}'{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"status": "Success",
"task_id": "388510158565457",
"video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/1ee6a770-eb88-4b6a-86ea-61981f01ed65/output.mp4"
},
"state": "Completed"
}画像から動画 — I2V で静止画をアニメーション化します
const response = await env.AI.run(
'minimax/hailuo-2.3',
{
prompt: 'Slowly zoom in with subtle parallax movement, gentle atmospheric motion',
duration: 6,
fast_pretreatment: false,
first_frame_image:
'https://replicate.delivery/xezq/MQpUhqkESIIQDlWUxtNcsznZLfUTmhEbCV3vdAZGHGPwwaMLA/tmpgl4gvv5n.jpeg',
prompt_optimizer: true,
resolution: '768P',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "minimax/hailuo-2.3",
"input": {
"prompt": "Slowly zoom in with subtle parallax movement, gentle atmospheric motion",
"duration": 6,
"fast_pretreatment": false,
"first_frame_image": "https://replicate.delivery/xezq/MQpUhqkESIIQDlWUxtNcsznZLfUTmhEbCV3vdAZGHGPwwaMLA/tmpgl4gvv5n.jpeg",
"prompt_optimizer": true,
"resolution": "768P"
}
}'{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"status": "Success",
"task_id": "388509844320343",
"video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/a19c7850-6f3b-47dd-b6f1-decb592a11ff/output.mp4"
},
"state": "Completed"
}高速処理 — より速い結果のために高速前処理を有効にします
const response = await env.AI.run(
'minimax/hailuo-2.3',
{
prompt: 'Fireworks exploding over a city skyline at night, colorful reflections on water',
duration: 6,
fast_pretreatment: true,
prompt_optimizer: true,
resolution: '768P',
},
)
console.log(response)curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"model": "minimax/hailuo-2.3",
"input": {
"prompt": "Fireworks exploding over a city skyline at night, colorful reflections on water",
"duration": 6,
"fast_pretreatment": true,
"prompt_optimizer": true,
"resolution": "768P"
}
}'{
"gatewayMetadata": {
"keySource": "Unified"
},
"result": {
"status": "Success",
"task_id": "388509805367378",
"video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/438b5433-5d32-4760-9564-c86da3d22aee/output.mp4"
},
"state": "Completed"
}prompt
stringmaxLength: 2000first_frame_image
stringprompt_optimizer
boolean必須デフォルト: truefast_pretreatment
boolean必須デフォルト: false▶duration
いずれか必須resolution
string必須デフォルト: 768Penum: 768P, 1080Pvideo
stringformat: uritask_id
stringstatus
stringenum: Preparing, Queueing, Processing, Success, Fail