Skip to main content
GET
/
api
/
calls
/
voice-ai
/
transferable-agents
List Voice AI agents eligible as transfer targets
curl --request GET \
  --url https://your-instance.example.com/api/calls/voice-ai/transferable-agents \
  --header 'Authorization: Bearer <token>'
{
  "agents": [
    {
      "id": "64d2f9c5e8a1d4e001a0b1c2",
      "name": "Senior Leasing Specialist"
    },
    {
      "id": "64d2f9c5e8a1d4e001a0b1c3",
      "name": "Maintenance Coordinator"
    }
  ]
}

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.

Query Parameters

excludePromptId
string

Prompt _id to exclude from the result. Typically the current agent's id, to prevent self-transfer.

Response

Transferable agents list

agents
object[]
required