Headers
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.
Response
Successful Response
The response is of type ModelResponseModel · object[]
.
curl --request GET \
--url https://api.elevenlabs.io/v1/models
[
{
"model_id": "<string>",
"name": "<string>",
"can_be_finetuned": true,
"can_do_text_to_speech": true,
"can_do_voice_conversion": true,
"can_use_style": true,
"can_use_speaker_boost": true,
"serves_pro_voices": true,
"token_cost_factor": 123,
"description": "<string>",
"requires_alpha_access": true,
"max_characters_request_free_user": 123,
"max_characters_request_subscribed_user": 123,
"maximum_text_length_per_request": 123,
"languages": [
{
"language_id": "<string>",
"name": "<string>"
}
]
}
]
Gets a list of available models.
curl --request GET \
--url https://api.elevenlabs.io/v1/models
[
{
"model_id": "<string>",
"name": "<string>",
"can_be_finetuned": true,
"can_do_text_to_speech": true,
"can_do_voice_conversion": true,
"can_use_style": true,
"can_use_speaker_boost": true,
"serves_pro_voices": true,
"token_cost_factor": 123,
"description": "<string>",
"requires_alpha_access": true,
"max_characters_request_free_user": 123,
"max_characters_request_subscribed_user": 123,
"maximum_text_length_per_request": 123,
"languages": [
{
"language_id": "<string>",
"name": "<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.
Successful Response
The response is of type ModelResponseModel · object[]
.