GET/journal

List the journal

The program's append-only posting feed, grouped into balanced entries, newest first.

Query Parameters

limitinteger

Page size

Example: 50

cursorstring

Pagination cursor

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

A page of journal entries

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