v5

latestOpenAPI 3.1.02026-08-043621,4011.8 MB
models

Get Models

Gets a list of available models.

get/v1/models

Headers

xi-api-keystring nullable

Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Response

Successful Response

model_idstring required

The unique identifier of the model.

namestring required

The name of the model.

can_be_finetunedboolean required

Whether the model can be finetuned.

can_do_text_to_speechboolean required

Whether the model can do text-to-speech.

can_do_voice_conversionboolean required

Whether the model can do voice conversion.

can_use_styleboolean required

Whether the model can use style.

can_use_speaker_boostboolean required

Whether the model can use speaker boost.

serves_pro_voicesboolean required

Whether the model serves pro voices.

token_cost_factornumber required

The cost factor for the model.

descriptionstring required

The description of the model.

requires_alpha_accessboolean required

Whether the model requires alpha access.

max_characters_request_free_userinteger required

The maximum number of characters that can be requested by a free user.

max_characters_request_subscribed_userinteger required

The maximum number of characters that can be requested by a subscribed user.

maximum_text_length_per_requestinteger required

The maximum length of text that can be requested for this model.

concurrency_groupstring required

The concurrency group for the model.

Example response

[
  {
    "can_be_finetuned": true,
    "can_do_text_to_speech": true,
    "can_do_voice_conversion": true,
    "can_use_speaker_boost": true,
    "can_use_style": true,
    "concurrency_group": "standard_eleven_multilingual_v2",
    "description": "Our state of the art multilingual speech synthesis model, able to generate life-like speech in 29 languages.",
    "languages": [
      {
        "language_id": "en",
        "name": "English"
      }
    ],
    "max_characters_request_free_user": 2500,
    "max_characters_request_subscribed_user": 5000,
    "maximum_text_length_per_request": 1000000,
    "model_id": "eleven_multilingual_v2",
    "model_rates": {
      "character_cost_multiplier": 1,
      "cost_discount_multiplier": 1
    },
    "name": "Eleven Multilingual v2",
    "requires_alpha_access": false,
    "serves_pro_voices": false,
    "token_cost_factor": 1
  }
]