GET
/transactionsList transactions
List transactions in the program, newest first, with optional filters.
Query Parameters
limitinteger
Page size
Example: 50
cursorstring
Pagination cursor
statusstring
Filter by status
end_datestring
ISO 8601 upper bound
directionstring
'debit' or 'credit'
entity_idstring
Filter to one account
start_datestring
ISO 8601 lower bound
Request
GET/transactions
curl --location 'https://api.ledgr.dev/v1/transactions' \
--header 'Authorization: {api_key}'Response
A page of transactions
{
"status": "success",
"pagination": {
"limit": 50,
"has_next": false,
"next_cursor": null
},
"transactions": []
}