Skip to main content
GET
/
api
/
calls
/
voice-ai
/
llms
List available LLM models from the configured provider
curl --request GET \
  --url https://your-instance.example.com/api/calls/voice-ai/llms \
  --header 'Authorization: Bearer <token>'
{
  "llms": [
    {
      "id": "gpt-4o-mini",
      "name": "GPT-4o mini"
    },
    {
      "id": "claude-3-5-sonnet",
      "name": "Claude 3.5 Sonnet"
    }
  ]
}

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 LLMs

llms
object[]
required

Provider-shaped LLM descriptors.