Journalzeilen listen
Liefert mehrere Journalzeilen aus dem Hauptbuch über alle passenden Intents hinweg, optional gefiltert nach Konto, Datumsbereich oder Suchbegriff.
GET
/v1/journal Authorization
Authorization string header erforderlich API-Key im Format
ll_.... Übergabe als Bearer Token. Query-Parameter
account string optional Nach Kontonummer filtern
startDate string optional Ab Datum (YYYY-MM-DD)
endDate string optional Bis Datum (YYYY-MM-DD)
search string optional Suche in Beschreibung, Kontonummern und external_reference
externalReference string optional Exakter Filter auf
external_reference limit number optional Max. Ergebnisse (Default: 200, Max: 1000)
Antworten
200
Erfolgreich
400
INVALID_INPUT Pflichtfelder fehlen oder Werte entsprechen nicht dem erwarteten Format.
GET
cURL /v1/journal -cmd">curl --request -method">GET --globoff -punct">\
--url 'https://api.ledgerlou.de/v1/journal' -punct">\
--header 'Authorization: Bearer ll_your_key' -punct">\
--get -punct">\
--data-urlencode 'startDate=2026-03-17' -punct">\
--data-urlencode 'endDate=2026-03-21' -punct">\
--data-urlencode 'limit=200' 200 Response
JSON {
"entries": [
{
"id": "<string>",
"journal_number": 1,
"booking_date": "<string>",
"account_debit": "<string>",
"account_credit": "<string>",
"amount": 1,
"description": "<string>",
"source": "<string>",
"intent_id": "<string>",
"fx_currency": null,
"fx_amount": null,
"external_reference": null,
"custom_metadata": null,
"provenance_summary": {
"surface": "<string>",
"surface_label": "<string>",
"channel": "<string>",
"channel_label": "<string>",
"actor_type": "<string>",
"actor_label": "<string>",
"actor_key_prefix": "<string>",
"actor_display": "<string>"
}
}
]
}