Create Call

To create call 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.

Create Call

post

Instruct the assistant to initiate an outbound call.

Body
assistantIdstringRequired
phoneNumberIdstringRequired
Responses
200

Call created successfully

application/json
post
/api/calls
POST /api/calls HTTP/1.1
Host: api.teloai.app
Content-Type: application/json
Accept: */*
Content-Length: 127

{
  "assistantId": "your assistant id",
  "phoneNumberId": "c046e20c-2343-464d-945e-d1732f5eb032",
  "customer": {
    "number": "+19785743206"
  }
}
200

Call created successfully

{
  "callId": "text",
  "assistantId": "text",
  "phoneNumberId": "text",
  "customer": {
    "number": "text"
  },
  "status": "text",
  "createdAt": "2025-10-17T21:30:42.166Z"
}