allmodels.ioDocs
API ReferenceElevenLabs SDK

Get one cloned voice (SDK get)

GET/el/v1/voices/{voice_id}

Reads one voice with ElevenLabs voices.get(). Only voices your own organization cloned are addressable here — use the voice listings to discover the shared catalogue — and a clone that is not yet usable answers 404 until it is. Addressed by the AM:@<name> voice ID, which is the only voice reference AllModels publishes.

Authorization

xi-api-key<token>

Tenant key (ElevenLabs SDK convention).

In: header

Path Parameters

voice_id*string

The AllModels AM:@<name> voice ID.

Length1 <= length <= 120

Response Body

application/json

application/json

application/json

fetch("https://example.com/el/v1/voices/AM:@narrator", {  method: "GET"})
{  "voice_id": "AM:@narrator",  "name": "narrator",  "labels": {    "language": "en"  },  "category": "cloned",  "available_for_tiers": [],  "high_quality_base_model_ids": []}

{  "error": "missing_api_key"}

{  "detail": {    "message": "no cloned voice with this id belongs to your organization",    "status": "voice_not_found"  }}