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

# List webhooks

`GET /v1/webhooks`

Lists webhook endpoints with optional filters and pagination

## Query parameters

- `enabled` boolean
- `tenant_id` string
- `limit` integer
- `cursor` string

## Response `200`

OK. Returns ListWebhooksOutputBody (items omit signing_key).

- ListWebhooksOutputBody
  - `data` WebhookPublicData[], required — List of webhooks (signing_key omitted for security)
    - `id` string, uuid, required — Webhook ID (UUID)
    - `url` string, required — URL that receives webhook POSTs
    - `enabled` boolean, required — Whether the webhook is active
    - `tenant_id` string — Tenant/organization identifier
    - `event_types` WebhookEventType[] — Event types this webhook subscribes to (empty = all)
    - `created_at` string, date-time, required — When the webhook was created
    - `updated_at` string, date-time, required — When the webhook was last updated
    - `disabled_reason` string, nullable — Read-only. Set by the system when the webhook was disabled. Omitted when null.
    - `disabled_at` string, date-time, nullable — Read-only. When the webhook was disabled. Omitted when null.
  - `total` integer — Total count matching filters (present when offset-based; omitted when using cursor)
  - `limit` integer, required — Limit used in query
  - `offset` integer — Offset used in query (present when offset-based; omitted when using cursor)
  - `next_cursor` string — Opaque cursor for the next page (keyset paging). Present only when there may be more results. Use as the cursor query param for the next page.

## Other responses

- `400` — Bad Request (e.g. invalid cursor)
- `default` — Error

## Changes

- **2026-04-30** `2fe8dc460c4d` — 2 info
  - the `type` response's property default value `about:blank` was removed for the status `400`
  - the `type` response's property default value `about:blank` was removed for the status `default`
- **2026-03-09** `a1a6593d3612` — 1 breaking, 2 info
  - removed the required property `data/items/signing_key` from the response with the `200` status
  - added the optional property `offset` to the response with the `200` status
  - added the optional property `total` to the response with the `200` status
- **2026-03-05** `a5a2961cda7b` — 2 breaking, 1 warning, 3 info
  - removed the required property `offset` from the response with the `200` status
  - removed the required property `total` from the response with the `200` status
  - deleted the `query` request parameter `offset`
  - added the new optional `query` request parameter `cursor`
  - …2 more
- **2026-02-24** `388b775b55ad` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/formbricks/apis/formbricks-hub-api/changes/v1/webhooks/get.md)

---

[API](https://skmtc.dev/formbricks/apis/formbricks-hub-api.md) · [All operations](https://skmtc.dev/formbricks/apis/formbricks-hub-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/formbricks/formbricks-hub-api/revisions/2fe8dc460c4d/schema)
