Skip to main content
GET
/
v1
/
webhooks
/
{id}
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.ledger.so/v1/webhooks/{id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "items": [
      {
        "id": "whd_efg123",
        "webhookId": "whk_bcd890",
        "event": "transaction.completed",
        "httpStatus": 200,
        "success": true,
        "attemptNumber": 1,
        "createdAt": "2025-01-15T15:30:00Z"
      }
    ],
    "nextCursor": null
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Format: ld_<env>_<prefix>_<secret> where <env> is test or live.

Path Parameters

id
string
required

The webhook ID (prefixed with whk_).

Example:

"whk_bcd890"

Query Parameters

limit
integer
default:50

Maximum number of items to return. Defaults to 50, maximum 200.

Required range: 1 <= x <= 200
cursor
string

Pagination cursor from a previous response's nextCursor field.

Response

A paginated list of webhook deliveries

ok
boolean
required

Indicates the request was successful.

data
object