ElevenLabs Multilingual v2 text-to-speech in over 30 languages. Stable, proven voice quality with the same premium voice lineup and fine-grained voice settings.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "elevenlabs/v2-multilingual",
"input": {
"prompt": "Demain, dรจs l'aube, ร l'heure oรน blanchit la campagne, je partirai.",
"voice": "Aria",
"language_code": "fr",
"stability": 0.6
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | The text to convert to speech |
speed | number | No | 1 | Speed of speech (0.7-1.2) |
style | number | No | 0 | Style exaggeration (0.0-1.0) |
voice | string | No | Rachel | Voice choice for speech generation RachelDrewClydePaulAriaDomiDaveRogerFinSarahJamesJaneJuniperArabellaHopeBradfordReginaldGamingAustinKuonBlondiePriyankaAlexandraMonikaMarkGrimblewood |
next_text | string | No | - | Next text for context |
stability | number | No | 0.5 | Voice stability (0.0-1.0). Lower is more variable and expressive |
language_code | string | No | en | Language of the text. Match it to your input for correct pronunciation enkojazhdehifrptitesidnltrfilplsvbgroarcselfihrmsskdataukruhunovi |
previous_text | string | No | - | Previous text for context |
similarity_boost | number | No | 0.75 | How closely the output follows the original voice (0.0-1.0) |
Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
French poetry narration with a calm voice
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "elevenlabs/v2-multilingual",
"input": {
"prompt": "Demain, dรจs l'aube, ร l'heure oรน blanchit la campagne, je partirai.",
"voice": "Aria",
"language_code": "fr",
"stability": 0.6
}
}'POST /v1/predictions