apicheats.dev elevenlabs/llms.txt Raw .md
POST

/v1/speech-to-speech/{voice_id}

ElevenLabs API

Speech To Speech

Base URL
https://api.elevenlabs.io
Auth
xi-api-key: <ELEVENLABS_API_KEY>
Last verified
2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 212 tokens · Vary: Accept

Critical gotchas

Authentication uses the non-standard xi-api-key header, not Authorization: Bearer. Sending a Bearer token returns HTTP 401.

Text-to-speech responses are raw binary audio, not JSON. Write the body to a file (--output speech.mp3) rather than parsing it.

cURL

curl -X POST 'https://api.elevenlabs.io/v1/speech-to-speech/voice-id?enable_logging=true&optimize_streaming_latency=10&output_format=mp3_44100_128' \  -H "xi-api-key: $ELEVENLABS_API_KEY" \  -F 'audio=@sample.bin' \  -F 'model_id=eleven_english_sts_v2' \  -F 'voice_settings=string' \  -F 'seed=0' \  -F 'remove_background_noise=false' \  -F 'file_format=other'
Get a free ElevenLabs API key → sponsored

Parameters

Name In Type Required Description
voice_id path string Yes Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices.
enable_logging query boolean No When enable_logging is set to false zero retention mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Zero retention mode may only be used by enterprise customers.
optimize_streaming_latency query integer No 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 query string No Output format of the generated audio. Formatted as codec_sample_rate_bitrate. So an mp3 with 22.05kHz sample rate at 32kbs is represented as mp3_22050_32. MP3 with 192kbps bitrate requires you to be subscribed to Creator tier or above. PCM and WAV formats with 44.1kHz sample rate requires you to be subscribed to Pro tier or above. Note that the μ-law format (sometimes written mu-law, often approximated as u-law) is commonly used for Twilio audio inputs.
audio body string Yes The audio file which holds the content and emotion that will control the generated speech.
model_id body string No Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for speech to speech, you can check this using the can_do_voice_conversion property.
voice_settings body string No Voice settings overriding stored settings for the given voice. They are applied only on the given request. Needs to be send as a JSON encoded string.
seed body integer No If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. Determinism is not guaranteed. Must be integer between 0 and 4294967295.
remove_background_noise body boolean No If set, will remove the background noise from your audio input using our audio isolation model. Only applies to Voice Changer.
file_format body string No The format of input audio. Options are 'pcm_s16le_16' or 'other' For `pcm_s16le_16`, the input audio must be 16-bit PCM at a 16kHz sample rate, single channel (mono), and little-endian byte order. Latency will be lower than with passing an encoded waveform.

Response 200 OK

"binary"