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

# List all webhook endpoints

`GET /webhooks/endpoints`

Get all registered webhook endpoints for the platform.

## Query parameters

- `page` integer — The page of results to return. Defaults to 1 if not provided.
- `page_size` integer — The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.

## Headers

- `X-Platform-Id` string

## Response `200`

OK

- WebhookEndpointResponsePagedList
  - `items` WebhookEndpointResponse[], required — A paginated array containing the response elements
    - `id` string, required — The unique identifier of the endpoint
    - `endpoint_url` string, required — The registered URL of the endpoint
    - `subscribed_events` string[], required — The events the endpoint is subscribed to
    - `created_at` string, date-time, required — The date and time the endpoint was created
    - `object` string — The object type
  - `page` integer, required — The current page of the results
  - `page_size` integer, required — The number of results on this page. This can be different from the requested page size if the total number of results is less than the requested page size
  - `total_count` integer, required — The total number of elements available in the response. This is the total number of elements available across all pages, not just the current page.
  - `has_next_page` boolean — Whether there are more pages available after this page
  - `has_previous_page` boolean — Whether there are more pages available before this page

## Other responses

- `400` — Bad Request

---

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