GET
/
conversations
List conversations
curl --request GET \
  --url https://api.operator.xyz/conversations \
  --header 'Authorization: Bearer <token>' \
  --header 'Operator-Version: <operator-version>'
{
  "data": [
    {
      "id": "<string>",
      "agent_id": "<string>",
      "channel_type": null,
      "livemode": true,
      "created_at": "2023-11-07T05:31:56Z",
      "started_at": null,
      "completed_at": null,
      "direction": "inbound",
      "status": "queued",
      "failure_reason": null,
      "custom_fields": {},
      "duration_sec": null,
      "sentiment": null
    }
  ],
  "cursor": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Operator-Version
enum<string>
required

The API version to use.

Available options:
2025-06-19

Query Parameters

cursor
string

Cursor to paginate through the conversations.

created_at_gte
string

Filter conversations created after this date.

created_at_lt
string

Filter conversations created before this date.

completed_at_gte
string

Filter conversations completed after this date.

completed_at_lt
string

Filter conversations completed before this date.

Response

200
application/json

Successful response.

Response object for listing conversations.