GET/webhooks/deliveries

List deliveries for a destination

List delivery attempts for one destination (paginated).

Query Parameters

limitinteger

Page size

Example: 50

cursorstring

Pagination cursor

endpoint_idstringrequired

The endpoint id

Example: "whe_20a18ce0"

Request
GET/webhooks/deliveries
curl --location 'https://api.ledgr.dev/v1/webhooks/deliveries' \
--header 'Authorization: {api_key}'
Response

A page of deliveries

{
  "status": "success",
  "deliveries": [],
  "pagination": {
    "limit": 50,
    "has_next": false,
    "next_cursor": null
  }
}