LedgerLou Docs ist für Desktop optimiert.

Bitte öffne diese Seite auf einem Gerät mit breiterem Bildschirm.

Journal · Buchungen

Kontostand abrufen

Gibt den aktuellen Saldo eines Kontos zurück (Soll-Bewegungen, Haben-Bewegungen, Nettosaldo).

get_account_balance
Authorization
Authorization string header erforderlich API-Key im Format ll_.... Übergabe als Bearer Token im OAuth-Flow.
Scopes
journal:read
Parameter
account_number string erforderlich Kontonummer, z. B. '1200'
start_date string optional Startdatum (YYYY-MM-DD)
end_date string optional Enddatum (YYYY-MM-DD)
Antwort
200
Erfolgreich
MCP get_account_balance
JSON
{
  "tool": "get_account_balance",
  "params": {
    "account_number": "<string>"
  }
}
200 Response
JSON
{
  "account_number": "<string>",
  "account_name": "<string>",
  "debit_total": 1,
  "credit_total": 1,
  "balance": 1
}