Guides
Text to Speech
Speech to Speech
History
Voices
Voice Generation
Voice Library
Projects
Pronunciation Dictionaries
Models
Audio-native
Models
Get Models
Gets a list of available models.
GET
/
v1
/
models
Copy
Ask AI
curl --request GET \
--url https://api.elevenlabs.io/v1/models
Copy
Ask AI
[
{
"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>"
}
]
}
]
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
200
application/json
Successful Response
The response is of type ModelResponseModel · object[]
.
Copy
Ask AI
curl --request GET \
--url https://api.elevenlabs.io/v1/models
Copy
Ask AI
[
{
"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>"
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.