ElevenLabs Turbo 2.5

Audio
Not available
Generate Now

ElevenLabs Turbo 2.5 text-to-speech. Fast, low-latency voice synthesis.

Type
Text to Audio
Billed
per 1K chars
Provider
ElevenLabs

Pricing

/ 1K chars
Price$0.03 / 1K chars

Supported parameters

modelSettings
  • Promptprompt
  • Voicevoice
  • Voice Stabilitystability
  • Voice Styletts_style
  • Playback Speedspeed

Code examples

POST /v1/generations

Generations 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/turbo-2.5",
        "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 Turbo 2.5 billed on ModelStack?expand_more
ElevenLabs Turbo 2.5 (Text to Audio) is billed at a flat, prepaid rate of $0.03 / 1K chars — generation pricing has no tier-based discounts. Final request costs are available in the console.
Which parameters does ElevenLabs Turbo 2.5 support?expand_more
ElevenLabs Turbo 2.5 supports: Prompt, Voice, Voice Stability, Voice Style, Playback Speed.
How can I generate with ElevenLabs Turbo 2.5?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `elevenlabs/turbo-2.5` and type `TEXT_TO_AUDIO` — see the code example above.