All Models


Audio
⚡
MiniMax Speech-02 Turbo
MiniMax
About
MiniMax Speech-02 Turbo offers MiniMax's voice synthesis technology at a significantly lower price per character, optimized for speed and volume. Produces natural-sounding speech with good emotional range — the right choice for high-volume applications like notification systems, interactive voice interfaces, and content pipelines.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| Turbo / 1M characters | $60.000/req | 12960 cr |
Use Cases
High-volume voice generationInteractive voice applicationsNotification and alert audioContent pipeline voiceover
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/tts", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "minimax-speech-02-turbo",
text: "Your order has been confirmed and will arrive within 3 business days.",
voice: "en-US-male-1",
language: "en"
})
});
const { taskId } = await response.json();