> ## 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 Delivery

> Get a single delivery attempt

## Path Parameters

<ParamField path="id" type="string" required>Endpoint ID (`whk_*`).</ParamField>
<ParamField path="did" type="string" required>Delivery attempt UUID (raw, not prefixed).</ParamField>

## Response

A single `WebhookDelivery` row (see [List Deliveries](/api-reference/monitoring/webhooks/list-deliveries) for the shape).

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

  ```ts TypeScript theme={null}
  const delivery = await signa.webhooks.retrieveDelivery('whk_01HK...', '01890a91-...');
  ```
</RequestExample>
