Skip to main content
GET
/
v1
/
ui
/
financials
/
ledger
Get general ledger entries
curl --request GET \
  --url https://api.example.com/v1/ui/financials/ledger
{
  "entries": [
    {
      "date": "<string>",
      "reference": "<string>",
      "description": "<string>",
      "type": "<string>",
      "direction": "<string>",
      "account": "<string>",
      "debit": 123,
      "credit": 123,
      "status": "<string>"
    }
  ],
  "total": 123,
  "totalCredit": 123,
  "totalDebit": 123,
  "currency": "SEK"
}

Query Parameters

period
enum<string>
Available options:
this-month,
last-month,
q1-2026,
last-6-months
limit
number
offset
number
sort
enum<string>
Available options:
date,
credit,
description
order
enum<string>
Available options:
asc,
desc

Response

200 - application/json

General ledger entries

entries
object[]
required
total
number
required
totalCredit
number
required
totalDebit
number
required
currency
string
required

ISO 4217 currency code

Example:

"SEK"