All Models
MiniMax Hailuo 2.3 Fast
Video
💨

MiniMax Hailuo 2.3 Fast

MiniMax

About

MiniMax Hailuo 2.3 Fast trades a fraction of peak quality for significantly faster generation and lower cost. Still produces high-quality 6-second clips suitable for social media and marketing, making it the go-to for teams that need rapid creative iteration at scale.

Pricing Tiers

Resolution / TierCostCredits
720p / 6s$0.240/req52 cr

Use Cases

Rapid creative prototypingHigh-volume social contentA/B testing video variantsCost-efficient batch generation

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-fast",
    prompt: "A busy coffee shop morning with steam rising from cups and patrons chatting",
    duration: 6,
    resolution: "720p"
  })
});

const { taskId } = await response.json();