LedgerLou Docs is optimized for desktop.

Please open this page on a device with a wider screen.

Journal

Fetch chart of accounts

Returns the tenant's active SKR04 chart of accounts, including custom accounts. Supports pagination via `limit` and `offset`.

GET /v1/accounts
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token.
Query Parameters
limit number optional Max results per page (1–500, default: 500)
offset number optional Offset for pagination (default: 0)
Responses
200
Success
400
INVALID_INPUT Required fields are missing or values do not match the expected format.
GET /v1/accounts
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/accounts' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
{
  "accounts": [
    {
      "number": "<string>",
      "name": "<string>",
      "type": "<string>",
      "category": "<string>",
      "report_group": "<string>",
      "is_system": true
    }
  ],
  "total": 1,
  "offset": 1,
  "limit": 1
}