GET/events

List events

List events on your account, newest first, each with a delivery summary.

Query Parameters

limitinteger

Page size

Example: 50

cursorstring

Pagination cursor

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

A page of events

{
  "events": [
    {
      "type": "transaction.posted",
      "event_id": "evt_c421c1ed",
      "created_at": "2026-08-06T19:30:32Z",
      "deliveries": {
        "total": 1,
        "failed": 0,
        "pending": 0,
        "succeeded": 1
      }
    }
  ],
  "status": "success",
  "pagination": {
    "limit": 50,
    "has_next": false,
    "next_cursor": null
  }
}
List events - Ledgr | Padle