ElevenLabsReleased on Sep 1, 2024

Turbo V2: Benchmarks, Pricing & Context Window

Turbo V2 is a text-to-speech model from ElevenLabs, released in September 2024.

ElevenLabs fast TTS model

Input
Text
Output
Audio

Turbo V2 pricing

Providers

Turbo V2 starts at $1250000 per million input tokens via Elevenlabs.

ProviderInput $/MOutput $/MMax InputMax OutputLatency sThroughputQuantInputOutput
Elevenlabs logoElevenlabs
$12500001.3K

Turbo V2 API

POST/v1/tts/synthesize

Run a request to see the response

Use it in your code

OpenAI-compatible endpoint through the LLM Stats gateway.

import requests

response = requests.post(
    "https://gateway.llm-stats.com/v1/tts/synthesize",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "model_id": "eleven_turbo_v2",
        "text": "Hello, this is a test.",
        "format": "mp3",
        "sample_rate": 24000,
    },
)

with open("output.mp3", "wb") as f:
    f.write(response.content)

Need an API key? Create one above in the playground, or read the API documentation.

Turbo V2 license

Turbo V2 is released under the Proprietary license, which restricts commercial use.

License
Proprietary
Non-commercial

Proprietary license - usage restrictions apply

FAQ

Common questions about Turbo V2.

Who created Turbo V2?

Turbo V2 was created by ElevenLabs.

What is the license for Turbo V2?

Turbo V2 is released under the Proprietary license.

Is Turbo V2 multimodal?

Yes, Turbo V2 is a multimodal model that can process both text and images as input.