LowCodeAPI
118 APIs
  • Text To Speech(4)
    • POST
      Text To Speech
    • POST
      Text To Speech With Timestamps
    • POST
      Streaming
    • POST
      Text To Speech Streaming With Timestamps
POST
POST
POST
POST
POST
POST
https://api.lowcodeapi.com/elevenlabs/v1/text-to-speech/voice_id
Path Parameters 1
voice_id*string

The path parameters will be sent as a URL query parameters as a part of the request.

Query Parameters 3
output_formatstring
enable_logging boolean
TRUE
FALSE
optimize_streaming_latencynumber

The query parameters will be sent as a URL query parameters as a part of the request.

Request Payload

The payload will be sent as a application/json as a part of the request body.

Path Parameters
voice_id*string
Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices.
Query Parameters
output_formatstring
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.
enable_loggingboolean
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_latencynumber
You can turn on latency optimizations at some cost of quality. The best possible final latency varies by model
Payload
seednumber
A list of pronunciation dictionary locators (id, version_id) to be applied to the text. They will be applied in order. You may have up to 3 locators per request
textstring*
The text that will get converted into speech
model_idstring
Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for text to speech, you can check this using the can_do_text_to_speech property
next_textstring
The text that comes after the text of the current request. Can be used to improve the flow of prosody when concatenating together multiple generations or to influence the prosody in the current generation.
previous_textstring
The text that came before the text of the current request. Can be used to improve the flow of prosody when concatenating together multiple generations or to influence the prosody in the current generation
voice_settingsobject
Voice settings overriding stored setttings for the given voice. They are applied only on the given reques
next_request_idsstring
A list of request_id of the samples that were generated before this generation. Can be used to improve the flow of prosody when splitting up a large task into multiple requests. The results will be best when the same model is used across the generations. In case both next_text and next_request_ids is send, next_text will be ignored. A maximum of 3 request_ids can be send.
previous_request_idsstring
A list of request_id of the samples that were generated before this generation. Can be used to improve the flow of prosody when splitting up a large task into multiple requests. The results will be best when the same model is used across the generations. In case both previous_text and previous_request_ids is send, previous_text will be ignored. A maximum of 3 request_ids can be send.
pronunciation_dictionary_locatorsobject
A list of pronunciation dictionary locators (id, version_id) to be applied to the text. They will be applied in order. You may have up to 3 locators per request
Response
API response data will be shown here once the request is completed.
ElevenLabs