# Get a webhook endpoint (/en/api-reference/webhook-endpoints/getWebhookEndpoint)

Retrieves a webhook endpoint by ID.

## GET /webhook-endpoints/{id}

### Parameters

- `id` (string, in: path, required) — Webhook endpoint ID

### Responses

#### 200 — Webhook endpoint details

Content type: `application/json`

- `id` (string, required) — Unique identifier
- `object` (string, required) — Object type
- `url` (string, required) — The URL to send webhook events to
- `description` (string | null) — Human-readable description
- `status` (enum("enabled" | "disabled"), required) — Endpoint status
- `enabledEvents` (Array<string>, required) — List of enabled event types. Use ['*'] for all events.
- `livemode` (boolean, required) — Whether the endpoint exists in live mode (true) or test mode (false)
- `secret` (string) — Signing secret used to verify webhook deliveries. Only returned when the endpoint is created or its secret is rotated. Store it securely: it cannot be retrieved later.
- `metadata` (object, required) — Custom metadata
- `createdAt` (string (date-time), required) — Creation timestamp
- `updatedAt` (string (date-time), required) — Last update timestamp

#### 404 — Webhook endpoint not found