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

# List event deliveries

<Info>
  **Pre-release** — contact your Fortary account team for access.
</Info>

<Warning>
  **Illustrative reference.** These examples show the shape of the API and are provided for early evaluation while it is still being finalized. Field names and response details may change before the API is released. A complete reference, generated directly from the live API, will replace these examples once it is available.
</Warning>

Lists every delivery of one event across all matching webhooks — the entry point for "we never received event X". Requires the `webhook:read` scope.

## Request

```bash theme={null}
curl https://customer-api.fortary.io/v1/webhook-events/evt_01hz8x2k9qv7m3ntf5rw6ye8ka/deliveries \
  -H "Authorization: Bearer fort_..."
```

## Response

Returned in full — no pagination. Delivery fields are described in [List webhook deliveries](/api/reference/webhooks/list-webhook-deliveries).

```json theme={null}
{
  "data": [
    {
      "id": "del_5c8a1f3e9b",
      "eventId": "evt_01hz8x2k9qv7m3ntf5rw6ye8ka",
      "webhookId": "whs_9b2f4e1a7c",
      "status": "DELIVERED",
      "attempts": [
        {
          "at": "2026-06-10T14:23:05Z",
          "result": "2xx",
          "httpStatus": 200,
          "latencyMs": 87,
          "bodySnippet": null
        }
      ],
      "replayedFromDeliveryId": null,
      "deliveredAt": "2026-06-10T14:23:05Z",
      "createdAt": "2026-06-10T14:23:05Z"
    }
  ]
}
```

An empty `data` array on a dispatched event means no webhook matched it — see `matchedCount` on [Get webhook event](/api/reference/webhooks/get-webhook-event).

Errors follow the standard [error envelope](/api/concepts/errors).
