> ## 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.

# Get a webhook handler

> **Required scope:** read

**Required scope:** `read`

### Path parameters

<ParamField path="id" type="string" required>
  Webhook endpoint id
</ParamField>

### Response

`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 />

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Webhook endpoint summary (secret redacted)         |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `404` | Not found                                          |
| `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/{id}' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "created_at": "string",
    "description": "string",
    "events": [
      "string"
    ],
    "id": "string",
    "is_active": true,
    "signing_secret_prefix": "string",
    "url": "string"
  }
  ```
</ResponseExample>
