Skip to content
Get started

Get voice by ID

GET/voices/{id}

Retrieve details for a single voice by its unique ID and provider. Returns the voice name, description, and provider metadata.

Path ParametersExpand Collapse
id: string
Query ParametersExpand Collapse
provider: "cartesia" or "elevenlabs"
One of the following:
"cartesia"
"elevenlabs"
ReturnsExpand Collapse
voice: object { id, name, description }
id: string
name: string
description: optional string

Get voice by ID

curl https://www.getrevox.com/api/voices/$ID \
    -H "Authorization: Bearer $REVOX_API_KEY"
{
  "voice": {
    "id": "id",
    "name": "name",
    "description": "description"
  }
}
Returns Examples
{
  "voice": {
    "id": "id",
    "name": "name",
    "description": "description"
  }
}