
Output
audio
Example prompt
Breaking news: markets surged today as tech stocks led a broad rally. Analysts say the momentum could continue through the quarter.Try this prompt →
LLM-ready
API & LLM schema
Exact request contract for this model. Agents can fetch it from /api/v1/models?id=fal-ai/minimax/speech-02-turbo.
POST
/api/v1/generate20 fields · 2 required| Field | Type | Requirement | Contract |
|---|---|---|---|
model_id | constant | Required | ArtEmotion model identifier. |
extra | object | Optional | Model-specific settings may also be nested here. |
max_credits | number | Optional | Reject before submission if the estimated list price exceeds this cap. · Range: 1–… |
webhook_url | string | Optional | Format: uri |
webhook_secret | string | Optional | Optional model input. |
folder_id | string | Optional | Optional model input. |
prompt | string | Required | Optional model input. |
voice_id | string | Optional | MiniMax pre-trained voice persona. · Allowed: Abbess, Calm_Woman, Casual_Guy, Decent_Boy, Deep_Voice_Man, Determined_Man, Elegant_Man, Exuberant_Girl, Friendly_Person, Imposing_Manner, Inspirational_girl, Lively_Girl, Lovely_Girl, Patient_Man, Sweet_Girl_2, Wise_Woman, Young_Knight · Default: Wise_Woman |
language_boost | string | Optional | Boosts recognition accuracy for the selected language. Use Auto for mixed-language text. · Allowed: auto, English, Chinese, Chinese,Yue, Japanese, Korean, Spanish, French, German, Portuguese, Arabic, Hindi, Russian, Dutch, Turkish, Italian, Polish, Swedish, Ukrainian, Vietnamese, Indonesian, Thai, Romanian, Greek, Czech, Finnish, Danish, Hebrew, Malay, Slovak, Croatian, Hungarian, Norwegian, Bulgarian, Slovenian, Catalan, Afrikaans, Nynorsk · Default: auto |
speed | number | Optional | Speech speed multiplier (0.5–2.0). · Default: 1 · Range: 0.5–2 |
vol | number | Optional | Output volume level (0.01–10). 1 is the default. · Default: 1 · Range: 0.01–10 |
pitch | number | Optional | Voice pitch shift in semitones (-12 to +12). 0 is unchanged. · Default: 0 · Range: -12–12 |
emotion | string | Optional | Emotional tone of the generated speech. · Allowed: , happy, sad, angry, fearful, disgusted, surprised, neutral · Default: |
english_normalization | boolean | Optional | Improves number reading (e.g. dates, prices). Adds slight latency. · Default: false |
output_format | string | Optional | Format of the output content (non-streaming only). · Allowed: url, hex · Default: hex |
tone_list | array<string> | Optional | Pronunciation replacements in 'text/(pronunciation)' format. For Chinese, use tones 1–5. |
as_format | string | Optional | Output audio encoding format. · Allowed: mp3, pcm, flac · Default: mp3 |
as_sample_rate | number | Optional | Sample rate of the generated audio in Hz. · Allowed: 8000, 16000, 22050, 24000, 32000, 44100 · Default: 32000 |
as_bitrate | number | Optional | Audio bitrate in bits per second. · Allowed: 32000, 64000, 128000, 256000 · Default: 128000 |
as_channel | number | Optional | Number of audio channels. · Allowed: 1, 2 · Default: 1 |
Minimal request example
{
"model_id": "fal-ai/minimax/speech-02-turbo",
"prompt": "Breaking news: markets surged today as tech stocks led a broad rally. Analysts say the momentum could continue through the quarter."
}Raw JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.artemotion.ai/api/v1/models?id=fal-ai%2Fminimax%2Fspeech-02-turbo",
"title": "MiniMax Speech-02 Turbo generation request",
"description": "Request body accepted by POST /api/v1/generate for fal-ai/minimax/speech-02-turbo.",
"type": "object",
"properties": {
"model_id": {
"type": "string",
"const": "fal-ai/minimax/speech-02-turbo",
"description": "ArtEmotion model identifier."
},
"extra": {
"type": "object",
"additionalProperties": true,
"description": "Model-specific settings may also be nested here."
},
"max_credits": {
"type": "number",
"minimum": 1,
"description": "Reject before submission if the estimated list price exceeds this cap."
},
"webhook_url": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"webhook_secret": {
"type": "string",
"maxLength": 512
},
"folder_id": {
"type": "string"
},
"prompt": {
"type": "string"
},
"voice_id": {
"title": "Voice",
"description": "MiniMax pre-trained voice persona.",
"default": "Wise_Woman",
"type": "string",
"enum": [
"Abbess",
"Calm_Woman",
"Casual_Guy",
"Decent_Boy",
"Deep_Voice_Man",
"Determined_Man",
"Elegant_Man",
"Exuberant_Girl",
"Friendly_Person",
"Imposing_Manner",
"Inspirational_girl",
"Lively_Girl",
"Lovely_Girl",
"Patient_Man",
"Sweet_Girl_2",
"Wise_Woman",
"Young_Knight"
]
},
"language_boost": {
"title": "Language Boost",
"description": "Boosts recognition accuracy for the selected language. Use Auto for mixed-language text.",
"default": "auto",
"type": "string",
"enum": [
"auto",
"English",
"Chinese",
"Chinese,Yue",
"Japanese",
"Korean",
"Spanish",
"French",
"German",
"Portuguese",
"Arabic",
"Hindi",
"Russian",
"Dutch",
"Turkish",
"Italian",
"Polish",
"Swedish",
"Ukrainian",
"Vietnamese",
"Indonesian",
"Thai",
"Romanian",
"Greek",
"Czech",
"Finnish",
"Danish",
"Hebrew",
"Malay",
"Slovak",
"Croatian",
"Hungarian",
"Norwegian",
"Bulgarian",
"Slovenian",
"Catalan",
"Afrikaans",
"Nynorsk"
]
},
"speed": {
"title": "Speed",
"description": "Speech speed multiplier (0.5–2.0).",
"default": 1,
"type": "number",
"minimum": 0.5,
"maximum": 2,
"multipleOf": 0.05
},
"vol": {
"title": "Volume",
"description": "Output volume level (0.01–10). 1 is the default.",
"default": 1,
"type": "number",
"minimum": 0.01,
"maximum": 10,
"multipleOf": 0.05
},
"pitch": {
"title": "Pitch",
"description": "Voice pitch shift in semitones (-12 to +12). 0 is unchanged.",
"default": 0,
"type": "number",
"minimum": -12,
"maximum": 12,
"multipleOf": 1
},
"emotion": {
"title": "Emotion",
"description": "Emotional tone of the generated speech.",
"default": "",
"type": "string",
"enum": [
"",
"happy",
"sad",
"angry",
"fearful",
"disgusted",
"surprised",
"neutral"
]
},
"english_normalization": {
"title": "English Normalization",
"description": "Improves number reading (e.g. dates, prices). Adds slight latency.",
"default": false,
"type": "boolean"
},
"output_format": {
"title": "Output Format",
"description": "Format of the output content (non-streaming only).",
"default": "hex",
"type": "string",
"enum": [
"url",
"hex"
]
},
"tone_list": {
"title": "Tone List",
"description": "Pronunciation replacements in 'text/(pronunciation)' format. For Chinese, use tones 1–5.",
"type": "array",
"items": {
"type": "string"
}
},
"as_format": {
"title": "Audio Format",
"description": "Output audio encoding format.",
"default": "mp3",
"type": "string",
"enum": [
"mp3",
"pcm",
"flac"
]
},
"as_sample_rate": {
"title": "Sample Rate",
"description": "Sample rate of the generated audio in Hz.",
"default": "32000",
"type": "number",
"enum": [
8000,
16000,
22050,
24000,
32000,
44100
]
},
"as_bitrate": {
"title": "Bitrate",
"description": "Audio bitrate in bits per second.",
"default": "128000",
"type": "number",
"enum": [
32000,
64000,
128000,
256000
]
},
"as_channel": {
"title": "Channels",
"description": "Number of audio channels.",
"default": "1",
"type": "number",
"enum": [
1,
2
]
}
},
"required": [
"model_id",
"prompt"
],
"additionalProperties": false
}FAQ
How much does MiniMax Speech-02 Turbo cost on ArtEmotion?
Credit-based pricing. You pay in ArtEmotion credits — every plan and top-up converts USD to credits at a fixed rate.
Do I get my credits back if MiniMax Speech-02 Turbo fails?
Yes — failed generations are never charged. The credits are released back to your balance automatically.
Can I call MiniMax Speech-02 Turbo from the API?
Yes. Use POST /api/v1/generate with model_id: "fal-ai/minimax/speech-02-turbo". See the API reference for the full schema.
Where are my generations stored?
Every output is saved to your personal Library. You can export or delete everything any time from Privacy & deletion.
Ready to generate with MiniMax Speech-02 Turbo?
Start now →No commitment. New accounts get 50 free credits on signup. See pricing.