All Models
Video
🎠Popular
MiniMax Hailuo 2.3
MiniMax
About
MiniMax Hailuo 2.3 is MiniMax's most advanced video generation model, producing 6-second clips with cinematic camera simulation, smooth motion interpolation, and premium color grading. Especially strong at realistic human movement, expressive faces, and commercial-grade product visualization.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 720p / 6s | $0.350/req | 76 cr |
Use Cases
Commercial advertisingLifestyle and fashion contentProduct launch campaignsCinematic social media content
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2video", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "minimax-hailuo-2-3",
prompt: "A model walking a high-fashion runway with dramatic lighting and flowing fabric",
duration: 6,
resolution: "720p"
})
});
const { taskId } = await response.json();