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

# List Webhooks

`GET /api/v1/webhooks`

List webhooks configured for the caller's organization.

## Query parameters

- `is_active` boolean, nullable — Filter webhooks by active status.
- `page_size` integer — Number of results to return per page.
- `cursor` string, nullable — The pagination cursor value.

## Response `200`

Successful Response

- PaginatedResponseWebhookListItemExternal
  - `cursor` string, nullable, required — Cursor value to fetch next set of items
  - `page_size` integer, required — Indicates the count of items in the response
  - `items` WebhookListItemExternal[], required — List of items in the current response
    - `webhook_id` string, uuid, required — Unique identifier of the webhook.
    - `name` string, required — Name of the webhook.
    - `url` string, required — URL the webhook is delivered to.
    - `is_enabled` boolean, required — Whether the webhook is currently enabled.
    - `for_test_connector` boolean, nullable — Whether this webhook is scoped to a demo/test connector.
    - `created_at` string, date-time, nullable
    - `last_triggered_at` string, date-time, nullable — When this webhook last fired, if ever.

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `422` — Validation Error
- `429` — Rate limit exceeded.

## Changes

- **2026-08-24** `a606b0cf18c9` — 2 info
  - `query` request parameter `cursor` list-of-types was widened by adding types `null`
  - for the `query` request parameter `cursor`, the type/format was generalized from `string`/`` to ``/``
- **2026-08-01** `eb3486b88e55` — 3 info
  - added the non-success response with the status `401`
  - added the non-success response with the status `403`
  - added the non-success response with the status `429`
- **2026-07-26** `425103205026` — 1 info
  - endpoint added

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

---

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