How it works
All list endpoints return paginated results using cursor-based pagination.Query parameters
Response format
nextCursor is null, there are no more pages.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Cursor-based pagination for list endpoints.
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 50 | Number of items per page (max 200) |
cursor | string | — | Cursor from the previous response’s nextCursor |
{
"ok": true,
"data": {
"items": [...],
"nextCursor": "eyJ..."
}
}
nextCursor is null, there are no more pages.
# First page
curl -sS "https://api.ledger.so/v1/transactions?limit=10" \
-H "Authorization: Bearer $LEDGER_API_KEY"
# Next page
curl -sS "https://api.ledger.so/v1/transactions?limit=10&cursor=eyJ..." \
-H "Authorization: Bearer $LEDGER_API_KEY"