---
title: "List Webhook Endpoints"
method: GET
path: "/v3/webhooks/endpoints"
tags: ["Webhooks"]
---

# List Webhook Endpoints

`GET /v3/webhooks/endpoints`

Returns a paginated list of registered webhook endpoints.

## Query parameters

- `limit` integer
- `token` string

## Response `200`

Successful response

- object
  - `data` WebhookEndpointResponse[]
    - `endpoint_id` string, required — Unique identifier for this webhook endpoint.
    - `url` string, required — The URL that receives webhook POST requests.
    - `events` string[], nullable — Event types this endpoint subscribes to. Null means all events.
    - `status` string, required — Endpoint status: 'enabled' or 'disabled'.
    - `created_at` string, required — ISO 8601 timestamp when the endpoint was created.
    - `secret` string, nullable — The signing secret for verifying webhook payloads. Only returned on create and rotate-secret.
  - `has_more` boolean — Whether more pages are available
  - `next_token` string, nullable — Opaque cursor for the next page

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed
- `429` — Rate limit exceeded

---

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