Skip to main content
GET
/
api
/
calls
/
voice-ai
/
voices
List available AI voices from the configured provider
curl --request GET \
  --url https://your-instance.example.com/api/calls/voice-ai/voices \
  --header 'Authorization: Bearer <token>'
{
  "voices": [
    {
      "voice_id": "21m00Tcm4TlvDq8ikWAM",
      "name": "Rachel",
      "labels": {
        "accent": "american",
        "age": "young"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Available voices

voices
object[]
required

Provider-shaped voice descriptors; ElevenLabs voices include voice_id, name, labels, etc.