> ## 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 webhooks handlers

> **Required scope:** read

**Required scope:** `read`

### Response

`ListWebhooksResponse`

<ResponseField name="count" type="integer" required />

<ResponseField name="endpoints" type="WebhookSummary[]" required>
  <Expandable title="WebhookSummary">
    <ResponseField name="created_at" type="string" required />

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

    <ResponseField name="events" type="string[]" required />

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

    <ResponseField name="is_active" type="boolean" required />

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

    <ResponseField name="url" type="string" required />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | List of registered webhook endpoints               |
| `401` | Unauthorized                                       |
| `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/api/v1/webhooks' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "count": 2,
    "endpoints": [
      {
        "created_at": "2026-08-31T14:22:05Z",
        "description": "Two-person tent, green — replacement for damaged pole set.",
        "events": [],
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "is_active": true,
        "signing_secret_prefix": "YOUR_API_KEY",
        "url": "https://example.com/webhooks/stateset"
      }
    ]
  }
  ```
</ResponseExample>
