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

---

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