Get Assistants

To get assistants using the Teloai API, you must authenticate each request with an API key. This key must be included in the headers of your HTTP request.

List Assistants

get

Retrieve all assistants.

Responses
200

A list of assistants

application/json
get
/api/assistants
GET /api/assistants HTTP/1.1
Host: api.teloai.app
Accept: */*
200

A list of assistants

[
  {
    "title": "text",
    "firstMessage": "text",
    "endCallMessage": "text",
    "AssistantInstructions": "text",
    "voiceId": "text",
    "language": "text",
    "dynamicVariables": [
      {
        "key": "text",
        "value": "text"
      }
    ],
    "timezone": "text"
  }
]