MiniMax Hailuo 2.3 Fast
Text-to-Video • MiniMax • ProxiedA lower-latency version of Hailuo 2.3 that preserves core motion quality, visual consistency, and stylization while enabling faster iteration.
| Model Info | |
|---|---|
| Terms and License | link ↗ |
| More information | link ↗ |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
Usage
const response = await env.AI.run( 'minimax/hailuo-2.3-fast', { first_frame_image: 'https://replicate.delivery/xezq/MQpUhqkESIIQDlWUxtNcsznZLfUTmhEbCV3vdAZGHGPwwaMLA/tmpgl4gvv5n.jpeg', prompt: 'Gentle movement and subtle animation, natural-looking motion', prompt_optimizer: true, fast_pretreatment: false, duration: 6, resolution: '768P', }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/eff40703-0339-4d1d-b66a-db050e878038/output.mp4", "task_id": "388514752192863", "status": "Success" }, "gatewayMetadata": { "keySource": "Unified" }}Examples
High Resolution I2V — Animate a photo in 1080P
const response = await env.AI.run( 'minimax/hailuo-2.3-fast', { first_frame_image: 'https://replicate.delivery/xezq/IeNNble3XUqhpUZTd3CkYTUf8EgkFU1fl1Jnyive3B26MsGzC/tmp51dpln4i.jpeg', prompt: 'Camera slowly pans across the scene with cinematic depth of field', prompt_optimizer: true, fast_pretreatment: false, duration: 6, resolution: '1080P', }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/2b6251d2-d4ae-4d58-b12f-2609c50fadc2/output.mp4", "task_id": "388515984507205", "status": "Success" }, "gatewayMetadata": { "keySource": "Unified" }}Fast Processing — Quick I2V with fast pretreatment enabled
const response = await env.AI.run( 'minimax/hailuo-2.3-fast', { first_frame_image: 'https://replicate.delivery/xezq/jfh37lJpnDQhaKcAfCrxSCEh7HA7lv5cCWmJW284tYXwh1YWA/tmpw2i437qe.jpeg', prompt: 'Hair blowing in the wind, eyes blinking naturally', prompt_optimizer: true, fast_pretreatment: true, duration: 6, resolution: '768P', }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://video-product.cdn.minimax.io/inference_output/video/2026-04-17/b64303a0-0227-4d42-983a-dcaec397b6b1/output.mp4", "task_id": "388515980755024", "status": "Success" }, "gatewayMetadata": { "keySource": "Unified" }}Parameters
stringrequiredURL or base64 data URI of the first frame imagestringmaxLength: 2000booleanrequireddefault: truebooleanrequireddefault: falseone ofrequiredstringrequireddefault: 768Penum: 768P, 1080Pstringformat: uristringstringenum: Preparing, Queueing, Processing, Success, Fail