GET
/
api
/
calls
/
{call_id}
/
events
curl --request GET \
  --url https://api.ultravox.ai/api/calls/{call_id}/events \
  --header 'X-API-Key: <api-key>'
{
  "next": "http://api.example.org/accounts/?cursor=cD00ODY%3D\"",
  "previous": "http://api.example.org/accounts/?cursor=cj0xJnA9NDg3",
  "results": [
    {
      "callId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "callStageId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "callTimestamp": "<string>",
      "severity": "debug",
      "type": "<string>",
      "text": "<string>",
      "extras": "<any>"
    }
  ],
  "total": 123
}

Authorizations

X-API-Key
string
header
required

API key

Path Parameters

call_id
string
required

Query Parameters

cursor
string

The pagination cursor value.

minimum_severity
enum<string>
default:info

The minimum severity of events to include.

Available options:
debug,
error,
info,
warning
pageSize
integer

Number of results to return per page.

type
string

If set, restricts returned events to those of the given type.

Response

200 - application/json

The response is of type object.