LedgerLou Docs is optimized for desktop.

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

Bank

Get matching suggestions

Returns matching suggestions for open bank transactions. Suggestions always reference a journal intent, not individual booking lines.

GET /v1/bank-transactions/suggestions
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token.
Query Parameters
bank_account_id uuid required Bank account ID
Responses
200
Success
400
INVALID_INPUT Required fields are missing or values do not match the expected format.
404
NOT_FOUND The requested resource was not found.
GET /v1/bank-transactions/suggestions
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/bank-transactions/suggestions' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
[
  {
    "bank_transaction_id": "<string>",
    "ledger_intent_id": "<string>",
    "match_score": 1,
    "match_reasons": [
      "<string>"
    ],
    "ledger_description": "<string>",
    "ledger_amount": 1,
    "ledger_date": "<string>"
  }
]