Returns invoice details for the display invoice_nr in the path. Download the PDF with GET /account/invoices/{invoice_nr}/pdf using the same Api-Key.
Request
Add parameter in header API-key
Example:API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/invoices/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"id": 0,
"invoice_date": "string",
"invoice_nr": 0,
"total_price": 0,
"paid": true,
"payment_status": "paid",
"payment_url": "string"
}
}
Modified at 2026-04-09 12:56:00