> ## 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 response input items handlers

> **Required scope:** read

**Required scope:** `read`

### Path parameters

<ParamField path="response_id" type="string" required>
  Response ID
</ParamField>

### Response

`ResponseInputItemsList`

<ResponseField name="data" type="any[]" required />

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

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Normalized input items for a stored response       |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.nsr.stateset.com/v1/responses/{response_id}/input_items' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [],
    "object": "string"
  }
  ```
</ResponseExample>
