ElevenLabs Multilingual v2
AudioNot available
ElevenLabs Multilingual v2 text-to-speech. Higher quality, 29 languages.
- Type
- Text to Audio
- Billed
- per 1K chars
- Provider
- ElevenLabs
Pricing
/ 1K charsPrice$0.06 / 1K chars
Supported parameters
modelSettings- Promptprompt
- Voicevoice
Code examples
POST /v1/generationsGenerations are async — the request returns immediately with an id; poll for the result.
python
import requests
response = requests.post(
"https://api.modelstack.cc/v1/generations",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
json={
"type": "TEXT_TO_AUDIO",
"prompt": "A serene mountain landscape at sunset",
"model": "elevenlabs/multilingual-v2",
"modelSettings": {
"voice": "Rachel"
}
},
)
generation_id = response.json()["data"]["id"]
# Poll for the result
result = requests.get(
f"https://api.modelstack.cc/v1/generations/{generation_id}",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])Related models
Frequently asked questions
How is ElevenLabs Multilingual v2 billed on ModelStack?expand_more
ElevenLabs Multilingual v2 (Text to Audio) is billed at a flat, prepaid rate of $0.06 / 1K chars — generation pricing has no tier-based discounts. Final request costs are available in the console.
Which parameters does ElevenLabs Multilingual v2 support?expand_more
ElevenLabs Multilingual v2 supports: Prompt, Voice.
How can I generate with ElevenLabs Multilingual v2?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `elevenlabs/multilingual-v2` and type `TEXT_TO_AUDIO` — see the code example above.