POST
/
v1
/
text-to-speech
/
{voice_id}
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.text_to_speech.convert(
    voice_id="JBFqnCBsd6RMkjVDRZzb",
    output_format="mp3_44100_128",
    text="The first move is what sets everything in motion.",
    model_id="eleven_multilingual_v2",
)
This response does not have an example.

Quick Start

Generate spoken audio from text with a simple request:

from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.text_to_speech.convert(
    voice_id="JBFqnCBsd6RMkjVDRZzb",
    output_format="mp3_44100_128",
    text="Hello! 你好! Hola! नमस्ते! Bonjour! こんにちは! مرحبا! 안녕하세요! Ciao! Cześć! Привіт! வணக்கம்!",
    model_id="eleven_multilingual_v2"
)

Why Choose ElevenLabs?

Our AI model produces the highest-quality voices in the industry.

voices

Premium Voice Quality

Chooose from over 3,000 voices or clone your own. Our industry-leading voice technology delivers the most natural-sounding AI conversations.

32 Languages

Choose from over 32 languages with 1000s of voices, for every use-case, at 192kbps

Ultra-low latency

As low as ~250ms (+ network latency) audio generation times with our Turbo model.

Natural Prosody

Understands natural speech patterns for lifelike rhythm and intonation.

Concurrent Request Limits

The maximum number of concurrent requests you can run in parallel depends on your subscription tier.

The concurrent request limits don’t apply to enterprise tier. Talk to sales to discuss a custom plan.

Free & Starter

  • Free: 2 concurrent requests
  • Starter: 3 concurrent requests

Creator & Pro

  • Creator: 5 concurrent requests
  • Pro: 10 concurrent requests

Scale & Business

  • Scale: 15 concurrent requests
  • Business: 15 concurrent requests

Supported Languages

Our TTS API is multilingual and currently supports 32 languages across multiple regions.

Asia & Pacific

  • Chinese
  • Japanese
  • Korean
  • Vietnamese
  • Filipino
  • Indonesian
  • Malay
  • Tamil
  • Hindi

Europe (West)

  • English
  • French
  • German
  • Italian
  • Spanish
  • Dutch
  • Portuguese
  • Norwegian
  • Swedish
  • Danish

Europe (East)

  • Polish
  • Ukrainian
  • Russian
  • Czech
  • Slovak
  • Romanian
  • Bulgarian
  • Croatian
  • Greek
  • Hungarian
  • Finnish
  • Turkish
  • Classic Arabic

To use any of these languages, simply provide the input text in your language of choice.

Headers

xi-api-key
string

Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Path Parameters

voice_id
string
required

Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices.

Query Parameters

enable_logging
boolean
default:true

When enable_logging is set to false full privacy mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Full privacy mode may only be used by enterprise customers.

optimize_streaming_latency
integer
deprecated

You can turn on latency optimizations at some cost of quality. The best possible final latency varies by model. Possible values: 0 - default mode (no latency optimizations) 1 - normal latency optimizations (about 50% of possible latency improvement of option 3) 2 - strong latency optimizations (about 75% of possible latency improvement of option 3) 3 - max latency optimizations 4 - max latency optimizations, but also with text normalizer turned off for even more latency savings (best latency, but can mispronounce eg numbers and dates).

Defaults to None.

output_format
string
default:mp3_44100_128

Output format of the generated audio. Must be one of: mp3_22050_32 - output format, mp3 with 22.05kHz sample rate at 32kbps. mp3_44100_32 - output format, mp3 with 44.1kHz sample rate at 32kbps. mp3_44100_64 - output format, mp3 with 44.1kHz sample rate at 64kbps. mp3_44100_96 - output format, mp3 with 44.1kHz sample rate at 96kbps. mp3_44100_128 - default output format, mp3 with 44.1kHz sample rate at 128kbps. mp3_44100_192 - output format, mp3 with 44.1kHz sample rate at 192kbps. Requires you to be subscribed to Creator tier or above. pcm_16000 - PCM format (S16LE) with 16kHz sample rate. pcm_22050 - PCM format (S16LE) with 22.05kHz sample rate. pcm_24000 - PCM format (S16LE) with 24kHz sample rate. pcm_44100 - PCM format (S16LE) with 44.1kHz sample rate. Requires you to be subscribed to Pro tier or above. ulaw_8000 - μ-law format (sometimes written mu-law, often approximated as u-law) with 8kHz sample rate. Note that this format is commonly used for Twilio audio inputs.

Body

application/json

Response

200
audio/mpeg

Successful Response

The response is of type file.