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

- ListWebhooksOutputBody
  - `data` WebhookData[], required — List of webhooks
    - `id` string, uuid, required — Webhook ID (UUID)
    - `url` string, required — URL that receives webhook POSTs
    - `signing_key` string, required — Key used to sign payloads (Standard Webhooks)
    - `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 (e.g. after 410 Gone or max delivery failures). Omitted when null.
    - `disabled_at` string, date-time, nullable — Read-only. When the webhook was disabled. Omitted when null. Cleared when the webhook is re-enabled via PATCH.
  - `limit` integer, required — Limit used in query
  - `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-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/a5a2961cda7b/schema)
