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

# List recent deliveries

> Recent delivery attempts for an endpoint, for debugging.

<ParamField path="id" type="string" required>The endpoint id.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.agentcard.sh/api/v2/webhook_endpoints/we_7h2k9p4m/deliveries \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      { "id": "whd_1a2b3c", "event_id": "evt_9f8e7d", "event_type": "vault.card_stored", "status": "succeeded", "response_status": 200, "attempted_at": "2026-09-07T17:05:12Z" }
    ]
  }
  ```
</ResponseExample>

Failed deliveries are retried with backoff. A run of failures on one endpoint is the first thing to check when a webhook consumer seems silent.
