allmodels.ioDocs
API ReferenceElevenLabs SDK

Get Speech Engine

Returns one Speech Engine configuration.

GET/el/v1/speech-engine/{speech_engine_id}

Returns one Speech Engine configuration.

Authorization

xi-api-key<token>

Tenant key (ElevenLabs SDK convention).

In: header

Path Parameters

speech_engine_id*string

Response Body

application/json

application/json

application/json

application/json

Client
Language
const response = await fetch("https://api.allmodels.io/el/v1/speech-engine/$SPEECH_ENGINE_ID", {  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_engine_id": "string",  "name": "string",  "speech_engine": {    "ws_url": "string",    "request_headers": {      "property1": "string",      "property2": "string"    }  },  "allmodels": {    "stt": {      "model_id": "string",      "provider": "string",      "provider_options": {        "property1": null,        "property2": null      },      "input": {        "property1": null,        "property2": null      }    },    "tts": {      "model_id": "string",      "provider": "string",      "provider_options": {        "property1": null,        "property2": null      },      "input": {        "property1": null,        "property2": null      }    }  },  "property1": null,  "property2": null}

{  "error": "missing_api_key"}

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