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

# Webhook Delivery Audit

> Inspect SEC API webhook delivery attempts per endpoint, including request ID, status, and latency, to debug and audit event delivery.

## Delivery attempts

Webhook deliveries are now stored canonically and can be inspected per endpoint:

```bash theme={null}
curl -H "x-api-key: $SECAPI_API_KEY" \
  "$SECAPI_BASE_URL/v1/webhook_endpoints/wh_123/deliveries?limit=20"
```

Each `webhook_delivery_attempt` includes:

* request ID
* status
* latency
* replay lineage through `replayedFromDeliveryId`

## Replay a delivery

```bash theme={null}
curl -X POST \
  -H "x-api-key: $SECAPI_API_KEY" \
  "$SECAPI_BASE_URL/v1/webhook_endpoints/wh_123/deliveries/wdel_123/replay"
```

The replay response returns `webhook_delivery_replay` with the newly created delivery attempts.
