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>",
      "customer_id": null,
      "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<date-time>

Filter conversations created after this date.

created_at_lt
string<date-time>

Filter conversations created before this date.

completed_at_gte
string<date-time>

Filter conversations completed after this date.

completed_at_lt
string<date-time>

Filter conversations completed before this date.

Response

Successful response.

Response object for listing conversations.

data
list.conversation.item · object[]
required

List of conversations.

cursor
string

Pass this value to the cursor parameter to get the next page of conversations.