---
title: "List Webhook Endpoints"
method: GET
path: "/v1/webhooks/endpoints"
tags: ["webhooks", "public"]
---

# List Webhook Endpoints

`GET /v1/webhooks/endpoints`

List webhook endpoints.

**Scopes**: `webhooks:read` `webhooks:write`

## Query parameters

- `organization_id` union — Filter by organization ID.
  - string, uuid4 — The organization ID.
  - string[]
- `page` integer — Page number, defaults to 1.
- `limit` integer — Size of a page, defaults to 10. Maximum is 100.

## Response `200`

Successful Response

- ListResourceWebhookEndpoint
  - `items` WebhookEndpoint[], required
    - `created_at` string, date-time, required — Creation timestamp of the object.
    - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
    - `id` string, uuid4, required — The ID of the object.
    - `url` string, required — The URL where the webhook events will be sent.
    - `name` string, nullable — An optional name for the webhook endpoint to help organize and identify it.
    - `format` 'raw' | 'discord' | 'slack', required
    - `secret` string, required — The secret used to sign the webhook events.
    - `organization_id` string, uuid4, required — The organization ID associated with the webhook endpoint.
    - `events` WebhookEventType[], required — The events that will trigger the webhook.
    - `enabled` boolean, required — Whether the webhook endpoint is enabled and will receive events.
  - `pagination` Pagination, required
    - `total_count` integer, required
    - `max_page` integer, required

## Other responses

- `422` — Validation Error

---

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