List calls (paginated)
Authorization
bearerAuth API key in the Authorization: Bearer <key> header.
Keys are created in the SMAO dashboard (Settings → API Keys).
In: header
Query Parameters
Opaque cursor from a prior meta.next_cursor. Base64url-encoded
(unpadded) — do not parse or construct it manually.
^[A-Za-z0-9_-]+$Items per page (1–100, default 25).
1 <= value <= 10025Filter by assistant.
^[a-f0-9]{24}$Filter by assistant phone number. E.164 format — a leading + followed by 6–20 digits.
^\+\d{6,20}$date-timedate-timeResponse Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/calls"{ "data": [ { "id": "string", "assistant_id": "string", "assistant_name": "string", "assistant_phone": "string", "direction": "inbound", "source": "inbound_phone", "phone_number": "string", "duration_seconds": 0, "done": true, "success": true, "language": "string", "started_at": "2019-08-24T14:15:22Z", "ended_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z" } ], "meta": { "has_more": true, "next_cursor": "string" }}Delete a tool DELETE
Deletes the tool and removes its `_id` from any assistant's `tool_ids` list so no assistant is left referencing a missing tool.
Trigger an outbound call POST
Starts an outbound call. Provide exactly one of `assistant_id` or `assistant_phone` to select the assistant, and exactly one of `to` or `target_phone` for the destination number (`to` is preferred, `target_phone` is an alias retained for backwards compatibility).