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

# List supported webhook events

> Discover the event names accepted when registering a webhook.

Discover the event names accepted when registering a webhook.

Use a developer access key. See [authentication, errors, and rate limits](/api-reference/authentication).

Required scopes: `webhooks:read`.

Use actual values from this response. Newly introduced event types are not automatically added to existing subscriptions.

## Response

**200** — `data` is the full array of supported event-name strings. The example is abbreviated; see the [event reference](/api-reference/webhooks/events) for payloads.

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      "record.created"
    ]
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl --fail-with-body --silent --show-error \
    "https://api.getkato.io/v1/webhooks/events" \
    -H "Authorization: Bearer $KATO_API_KEY"
  ```
</RequestExample>


## Related topics

- [All endpoints](/api-reference/endpoints.md)
- [Webhook event reference](/api-reference/webhooks/events.md)
- [Set up webhooks](/api-reference/webhooks/setup.md)
- [Authentication and API conventions](/api-reference/authentication.md)
- [Tasks API](/api-reference/tasks/overview.md)
