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

# List webhooks

`GET /webhooks`

Returns a paginated list of webhook endpoints configured for a company, ordered by most recently created.

Required permissions:
 - `developer:manage_webhook`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list webhooks for.

## Response `200`

A successful response

- object — The connection type for Webhook.
  - `data` WebhookListItem[], required — A list of nodes.
    - `api_version` 'v1' | 'v2' | 'v5', required — The different API versions
    - `child_resource_events` boolean, required — Whether events are sent for child resources. For example, if the webhook is on a company, enabling this sends events only from the company's sub-merchants (child companies).
    - `created_at` string, date-time, required — The datetime the webhook was created.
    - `enabled` boolean, required — Whether this webhook endpoint is currently active and receiving events.
    - `events` WebhookEvent[], required — The list of event types this webhook is subscribed to.
    - `id` string, required — The unique identifier for the webhook.
    - `url` string, required — The destination URL where webhook payloads are delivered via HTTP POST.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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