allmodels.ioDocs
API ReferenceElevenLabs SDK

List Speech Engines

Lists the permanent Speech Engines available to the authenticated project.

GET/el/v1/speech-engine

Lists the permanent Speech Engines available to the authenticated project.

Authorization

xi-api-key<token>

Tenant key (ElevenLabs SDK convention).

In: header

Query Parameters

page_size?integer
Range1 <= value <= 100
search?string
sort_direction?string

Value in

  • "asc"
  • "desc"
sort_by?string
cursor?string

Response Body

application/json

application/json

application/json

Client
Language
const response = await fetch("https://api.allmodels.io/el/v1/speech-engine?page_size=20", {  headers: { Authorization: `Bearer ${process.env.ALLMODELS_API_KEY}` }});if (!response.ok) throw new Error(`AllModels request failed: ${response.status}`);console.log(await response.json());
{  "speech_engines": [    {      "speech_engine_id": "string",      "name": "string",      "property1": null,      "property2": null    }  ],  "next_cursor": "string",  "has_more": true}

{  "error": "missing_api_key"}

{  "detail": {    "message": "string",    "status": "string",    "property1": null,    "property2": null  }}