---
title: "List webhooks"
method: GET
path: "/webdbs/webhooks"
tags: ["webdbs"]
---

# List webhooks

`GET /webdbs/webhooks`

Returns your WebDB webhooks.

## Query parameters

- `limit` integer — Maximum items to return. Defaults to 25.
- `cursor` string — Pagination cursor from a previous response.
- `tags` string[] — Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.

## Response `200`

A paginated list of webhooks

- WebdbsListWebhooksResponse — A page of WebDB webhooks.
  - `data` WebdbsWebhook[], required — Webhooks in this page.
    - `id` string, required — Webhook ID.
    - `url` string, uri, required — HTTPS URL that receives events.
    - `events` string[], required — Events sent to this webhook.
    - `collection_id` string, nullable, required — Collection being watched, or null for all collections.
    - `on` object, nullable, required — Optional field filter for row.updated events.
      - `fields` string[], required — Fields that trigger row.updated events.
    - `delivery` 'instant' | 'batch', required — Whether events are sent immediately or in batches.
    - `batch` object, nullable, required — Batch delivery settings.
      - `max_size` integer — Maximum events in one batch.
      - `max_delay` string — Maximum wait before sending a batch.
    - `secret` string, required — Secret used to verify webhook signatures.
    - `status` 'active' | 'disabled', required — Current webhook status.
    - `created_at` string, date-time, required — Time the webhook was created.
    - `updated_at` string, date-time, required — Time the webhook was last updated.
  - `has_more` boolean, required — Whether another page is available.
  - `next_cursor` string, nullable, required — Cursor for the next page, or null at the end.
  - `key_metadata` object — API key usage for this request.
    - `credits_consumed` integer, required — The number of credits consumed by this request.
    - `credits_remaining` integer, required — The number of credits remaining for your organization after this request.

## Other responses

- `401` — Unauthorized

## Changes

> 26 revisions in range; 12 could not be searched.

- **2026-08-08** `182f532c2552` — 1 warning
  - added the new `WEBSITE_BLOCKED` enum value to the `error_code` response property for the response status `401`
- **2026-08-07** `3c6a01ba967f` — 1 warning
  - added the new `COLD_DOMAIN_TIMEOUT_TOO_LOW` enum value to the `error_code` response property for the response status `401`
- **2026-08-06** `fc8ac2f5f021` — 4 warning
  - added the new `CONTENT_TOO_LARGE` enum value to the `error_code` response property for the response status `401`
  - added the new `PDF_IMAGES_ONLY` enum value to the `error_code` response property for the response status `401`
  - added the new `PDF_SKIPPED` enum value to the `error_code` response property for the response status `401`
  - added the new `WEBSITE_NOT_FOUND` enum value to the `error_code` response property for the response status `401`
- **2026-07-31** `f5c503b03f98` — 4 warning
  - added the new `BATCH_LIMIT_EXCEEDED` enum value to the `error_code` response property for the response status `401`
  - added the new `BATCH_NOT_CANCELLABLE` enum value to the `error_code` response property for the response status `401`
  - added the new `BATCH_NOT_COMPLETED` enum value to the `error_code` response property for the response status `401`
  - added the new `IDEMPOTENCY_KEY_CONFLICT` enum value to the `error_code` response property for the response status `401`
- …earlier changes not shown

[Full history](https://skmtc.dev/context/apis/context-dev/changes/webdbs/webhooks/get.md)

---

[API](https://skmtc.dev/context/apis/context-dev.md) · [All operations](https://skmtc.dev/context/apis/context-dev/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/context/context-dev/revisions/1febe5476266/schema)
