Voice Generation
Voice Generation Parameters
Guides
Text to Speech
Speech to Speech
History
Voices
Voice Generation
Voice Library
Projects
Pronunciation Dictionaries
Models
Audio-native
Voice Generation
Voice Generation Parameters
Get possible parameters for the /v1/voice-generation/generate-voice endpoint.
GET
/
v1
/
voice-generation
/
generate-voice
/
parameters
curl --request GET \
--url https://api.elevenlabs.io/v1/voice-generation/generate-voice/parameters
{
"genders": [
{
"name": "<string>",
"code": "<string>"
}
],
"accents": [
{
"name": "<string>",
"code": "<string>"
}
],
"ages": [
{
"name": "<string>",
"code": "<string>"
}
],
"minimum_characters": 123,
"maximum_characters": 123,
"minimum_accent_strength": 123,
"maximum_accent_strength": 123
}
Response
200 - application/json
Successful Response
curl --request GET \
--url https://api.elevenlabs.io/v1/voice-generation/generate-voice/parameters
{
"genders": [
{
"name": "<string>",
"code": "<string>"
}
],
"accents": [
{
"name": "<string>",
"code": "<string>"
}
],
"ages": [
{
"name": "<string>",
"code": "<string>"
}
],
"minimum_characters": 123,
"maximum_characters": 123,
"minimum_accent_strength": 123,
"maximum_accent_strength": 123
}