minimax/speech/2.8/turbo
MiniMax Speech 2.8 Turbo text-to-speech model with fast voice synthesis, enhanced expressiveness, 40+ language support, and voice cloning.
Example output — click Run to generate your own
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
https://api.sandbase.ai/v1/runminimax/speech/2.8/turboInput Schema
12 parameters · 2 required · 10 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | Required | Text to convert to speech. Use <#x#> between words to control pause duration (0.01-99.99s). · Min length: 1 · Max length: 5000 · Default: "Hello, welcome to Sandbase" |
voice_id | string | Required | Voice ID for speech synthesis. Use a predefined system voice or a custom cloned voice ID. · Default: "Wise_Woman" |
pitch | integer | Optional | Speech pitch. Range: -12 to 12, where 0 is normal pitch. · Min: -12 · Max: 12 · Default: 0 |
speed | number | Optional | Speech speed. Range: 0.5-2.0, where 1.0 is normal speed. · Min: 0.5 · Max: 2 · Default: 1 |
format | string | Optional | Format of generated sound. · Options: mp3, pcm, flac mp3pcmflac |
volume | number | Optional | Speech volume. Range: 0.1-10.0, where 1.0 is normal volume. · Min: 0.1 · Max: 10 · Default: 1 |
bitrate | integer | Optional | Bitrate of generated sound. · Options: 32000, 64000, 128000, 256000 3200064000128000256000 |
channel | integer | Optional | The number of channels. 1: mono, 2: stereo. · Options: 1, 2 12 |
emotion | string | Optional | The emotion of the generated speech. · Options: happy, sad, angry, fearful, disgusted, surprised, neutral · Default: "happy" happysadangryfearfuldisgustedsurprisedneutral |
sample_rate | integer | Optional | Sample rate of generated sound. · Options: 8000, 16000, 22050, 24000, 32000, 44100 80001600022050240003200044100 |
language_boost | string | Optional | Enhance the ability to recognize specified languages and dialects. · Options: Chinese, Chinese,Yue, English, Arabic, Russian, Spanish, French, Portuguese, German, Turkish, Dutch, Ukrainian, Vietnamese, Indonesian, Japanese, Italian, Korean, Thai, Polish, Romanian, Greek, Czech, Finnish, Hindi, Bulgarian, Danish, Hebrew, Malay, Slovak, Swedish, Croatian, Hungarian, Norwegian, Slovenian, Catalan, Nynorsk, Afrikaans, auto ChineseChinese,YueEnglishArabicRussianSpanishFrenchPortugueseGermanTurkishDutchUkrainianVietnameseIndonesianJapaneseItalianKoreanThaiPolishRomanianGreekCzechFinnishHindiBulgarianDanishHebrewMalaySlovakSwedishCroatianHungarianNorwegianSlovenianCatalanNynorskAfrikaansauto |
english_normalization | boolean | Optional | Improves performance in number-reading scenarios. · Default: false |
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the generation task |
status | string | Task status: pending, running, completed, failed, timeout |
model | string | Model used for the generation |
outputs | array | Array of output items |
outputs[].url | string | URL of the generated artifact |
outputs[].content_type | string | MIME type (e.g. image/png, video/mp4) |
error | object | null | Error details if failed, null on success |
error.type | string | Machine-readable error type code |
error.message | string | Human-readable error description |
Async Workflow
This model uses asynchronous execution. Submit a request and poll for the result.
- Submit — POST to /v1/run, receive an
id - Poll — GET /v1/run/{id} until status is
completed,failed, ortimeout - Retrieve — Read
outputsfrom the completed response
Code Examples
Ready-to-run snippets
# Step 1: Submit
curl -X POST https://api.sandbase.ai/v1/run \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "minimax/speech/2.8/turbo",
"text": "Hello, welcome to Sandbase",
"pitch": 0,
"speed": 1,
"volume": 1,
"emotion": "happy",
"voice_id": "Wise_Woman",
"english_normalization": false,
"prompt": "a beautiful sunset over mountains"
}'
# Step 2: Poll result (replace <id>)
curl https://api.sandbase.ai/v1/run/<id> \
-H "Authorization: Bearer YOUR_API_KEY"API README
MiniMax Speech 2.8 Turbo
MiniMax Speech 2.8 Turbo is a text-to-speech model focused on natural, expressive delivery rather than a mechanically perfect read. It synthesizes a chosen voice from text while preserving conversational rhythm, pauses, emotion, and subtle vocal behaviors that make narration feel present and human.
Speech 2.8 supports native sound tags for breaths, laughter, hesitations, and other non-verbal moments, alongside multilingual delivery and detailed audio controls. The Turbo route balances natural flow with faster, cost-efficient synthesis for production workflows.
Highlights
- Native sound tags. Interprets breaths, laughter, coughs, hesitations, and other vocal gestures inside the script.
- Natural rhythm and emotion. Models pacing, pauses, pitch variation, and expressive delivery for less robotic speech.
- Cross-lingual performance. Supports a broad language set with language boosting for multilingual narration and localization.
- Fast natural synthesis. Optimizes turnaround while retaining the expressive behavior of the Speech 2.8 generation.
Pricing
| Configuration | Billing unit | Price |
|---|---|---|
| Text length | Per 1,000 characters | $0.06 |
When to Use
| ✅ Good fit | ❌ Consider alternatives |
|---|---|
| The project needs expressive narration | The goal is a different media task or endpoint |
| The available inputs match the required local schema | Required source media or permissions are unavailable |
| The brief can specify subject, composition, style, and delivery | The result must be deterministic at pixel or sample level |
| The supported formats and controls match final placement | Delivery requires unsupported dimensions, codecs, or duration |
| An asynchronous generated result fits the workflow | A live, frame-synchronous, or real-time response is mandatory |
Prompt Guide
Write the request as a production brief: identify the main subject or source material, state the intended transformation, describe composition or timing, and finish with style, atmosphere, and delivery constraints. Keep preservation requirements separate from requested changes, and use only fields exposed by this route.
{
"text": "Hello, welcome to Sandbase",
"voice_id": "Wise_Woman",
"pitch": 0,
"speed": 1,
"format": "mp3"
}
Technical Specs
| Spec | Value |
|---|---|
| Model ID | minimax/speech/2.8/turbo |
| Input fields | text (string)<br>pitch (integer; -12–12)<br>speed (number; 0.5–2)<br>format (string; mp3, pcm, flac)<br>volume (number; 0.1–10)<br>bitrate (integer; 32000, 64000, 128000, 256000)<br>channel (integer; 1, 2)<br>emotion (string; happy, sad, angry, fearful, disgusted, surprised, neutral)<br>voice_id (string)<br>sample_rate (integer; 8000, 16000, 22050, 24000, 32000, 44100)<br>language_boost (string; Chinese, Chinese,Yue, English, Arabic, Russian, Spanish, French, Portuguese, German, Turkish, Dutch, Ukrainian, Vietnamese, Indonesian, Japanese, Italian, Korean, Thai, Polish, Romanian, Greek, Czech, Finnish, Hindi, Bulgarian, Danish, Hebrew, Malay, Slovak, Swedish, Croatian, Hungarian, Norwegian, Slovenian, Catalan, Nynorsk, Afrikaans, auto)<br>english_normalization (boolean) |
| Required input | text, voice_id |
| Output fields | url, duration_ms, content_type |
| Execution | Asynchronous job |
Related Models
minimax/speech/2.8/hdminimax/voice-cloneminimax/music/v2

