List payment runs
Lists payment runs with optional status filter and pagination.
GET
/v1/payment-runs Authorization
Authorization string header required API key in the format
ll_.... Pass as a Bearer token. Query Parameters
status string optional Filter by status: draft, approved, exported, completed, cancelled.
limit integer optional Max. results (1–500, default: 100)
offset integer optional Offset for pagination (default: 0)
Responses
200
Success
GET
cURL /v1/payment-runs -cmd">curl --request -method">GET -punct">\
--url 'https://api.ledgerlou.de/v1/payment-runs' -punct">\
--header 'Authorization: Bearer ll_your_key' 200 Response
JSON [
{
"id": "<string>",
"status": "<string>",
"execution_date": "<string>",
"total_amount": "<string>",
"invoice_count": 1,
"created_at": "<string>"
}
]