GET
/
v1
/
models
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.models.get_all()
[
  {
    "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>"
      }
    ],
    "model_rates": {
      "character_cost_multiplier": 123
    },
    "concurrency_group": "standard"
  }
]

Headers

xi-api-key
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.

Response

200
application/json
Successful Response
model_id
string
required
name
string
required
can_be_finetuned
boolean
required
can_do_text_to_speech
boolean
required
can_do_voice_conversion
boolean
required
can_use_style
boolean
required
can_use_speaker_boost
boolean
required
serves_pro_voices
boolean
required
token_cost_factor
number
required
description
string
required
requires_alpha_access
boolean
required
max_characters_request_free_user
integer
required
max_characters_request_subscribed_user
integer
required
maximum_text_length_per_request
integer
required
languages
object[]
required
model_rates
object
required
concurrency_group
enum<string>
required
Available options:
standard,
turbo