---
title: "List deliveries"
description: "List an endpoint's delivery history — status, attempts and payload — to debug your receiver."
section: "API reference"
url: https://dravo.dev/docs/api/webhooks/deliveries
---
# List deliveries

Every delivery attempt is recorded. List them, newest first, to see what Dravo
sent, the HTTP status your endpoint returned, how many attempts it took, and
whether a failed delivery is still `pending` a retry or has been `exhausted`.

#### `GET /v1/webhooks/{webhook_id}/deliveries`

List an endpoint's delivery history (status, attempts, payload), newest first, with keyset pagination.

**Auth:** Dashboard JWT only

| Field | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `webhook_id` | path | string | yes | Endpoint whose deliveries to list. |
| `limit` | query | integer | no | Page size, 1–100 (default 50). |
| `cursor` | query | string | no | next_cursor from a previous page. |

Response `200`: Page of deliveries.

```json
{
  "items": [
    {
      "id": "del_1",
      "event_type": "post.published",
      "status": "succeeded",
      "status_code": 200,
      "attempts": 1,
      "next_retry_at": null,
      "delivered_at": "2026-06-23T10:15:30Z",
      "created_at": "2026-06-23T10:15:30Z"
    }
  ],
  "next_cursor": null
}
```
