> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List handled response turns

> Responses

### Query parameters

<ParamField query="limit" type="integer" />

<ParamField query="offset" type="integer" />

<ParamField query="cursor" type="string">
  Opaque next\_cursor from a previous page. Takes precedence over offset.
</ParamField>

<ParamField query="channel" type="string">
  Filter by channel, e.g. email, chat.
</ParamField>

<ParamField query="rating" type="string">
  Filter by rating value.
</ParamField>

<ParamField query="escalated" type="string">
  Only escalated (taken-over) responses.
</ParamField>

<ParamField query="created_after" type="string (date-time)" />

<ParamField query="created_before" type="string (date-time)" />

### Response

`object`

<ResponseField name="object" type="string" />

<ResponseField name="data" type="Response[]">
  <Expandable title="Response">
    <ResponseField name="object" type="string" />

    <ResponseField name="id" type="string" />

    <ResponseField name="channel" type="string,null" />

    <ResponseField name="customer_message" type="string,null" />

    <ResponseField name="agent_response" type="string,null" />

    <ResponseField name="rating" type="string,null" />

    <ResponseField name="handled_by" type="string,null" />

    <ResponseField name="taken_over" type="boolean" />

    <ResponseField name="ticket_id" type="string,null" />

    <ResponseField name="workflow_id" type="string,null" />

    <ResponseField name="created_at" type="string,null" />
  </Expandable>
</ResponseField>

<ResponseField name="has_more" type="boolean" />

<ResponseField name="next_cursor" type="string">
  Keyset cursor for the next page — present only on cursor-capable lists with more rows.
</ResponseField>

### Status codes

| Code  | Meaning                               |
| ----- | ------------------------------------- |
| `200` | Responses                             |
| `401` | Missing, invalid, or expired API key. |
| `403` | The key lacks a required scope.       |
| `429` | Rate limit exceeded.                  |

### Access

|                |                         |
| -------------- | ----------------------- |
| Required scope | `responses:read`        |
| Rate limit     | 120 requests per minute |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://response.stateset.com/api/v1/responses' \
    --header "Authorization: Bearer $RESPONSECX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      {
        "object": "string",
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "channel": "string",
        "customer_message": "string",
        "agent_response": "string",
        "rating": "string",
        "handled_by": "string",
        "taken_over": true,
        "ticket_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "workflow_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "created_at": "2026-08-31T14:22:05Z"
      }
    ],
    "has_more": true,
    "next_cursor": "string"
  }
  ```
</ResponseExample>
