> ## Documentation Index
> Fetch the complete documentation index at: https://docs.signa.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Webhook Endpoint

> Get a single endpoint (secret redacted)

## Path Parameters

<ParamField path="id" type="string" required>Endpoint ID (`whk_*`).</ParamField>

## Response

A single `Webhook` (secret redacted). To get a fresh signing secret, use
[Rotate Secret](/api-reference/monitoring/webhooks/rotate-secret).

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.signa.so/v1/webhooks/whk_01HK..." \
    -H "Authorization: Bearer $SIGNA_API_KEY"
  ```

  ```ts TypeScript theme={null}
  const wh = await signa.webhooks.retrieve('whk_01HK...');
  ```
</RequestExample>
