---
title: "List webhooks"
method: GET
path: "/v1/webhook"
tags: ["Webhook"]
---

# List webhooks

`GET /v1/webhook`

Returns a paginated list of webhooks with their event subscriptions.

## Query parameters

- `limit` integer — Maximum number of webhooks to return (default: 20, max: 50)
- `after` string — Cursor for pagination - webhook ID to start after

## Response `200`

List of webhooks with their event subscriptions

- object
  - `data` WebhookResponse[], required
    - `id` string, uuid, required — Webhook ID
    - `description` string, nullable, required — Webhook description
    - `url` string, required — Webhook URL
    - `headers` object, required — Request headers
    - `events` string[], required — Event types this webhook is subscribed to
    - `createdAt` string, required — Creation timestamp
    - `updatedAt` string, required — Last update timestamp
  - `pagination` object, required
    - `total` number, required — Total number of items
    - `hasMore` boolean, required — Whether there are more items to fetch
    - `nextCursor` string, nullable, required — Cursor for the next page of items

## Other responses

- `401` — Unauthorized
- `500` — Internal Server Error

---

[API](https://skmtc.net/roarkhq/apis/roark-analytics-api.md) · [All operations](https://skmtc.net/roarkhq/apis/roark-analytics-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/roarkhq/roark-analytics-api/revisions/83528d3618ef/schema)
