curl --request GET \
--url https://api.mijnklantportaal.nl/v1/invoices \
--header 'Authorization: Bearer <token>'{
"current_page": 1,
"data": [
{
"id": "fac_abc12345def678",
"invoiceNumber": "MKP-2025.0010",
"lines": [
{
"id": "fcl_abc12345def678",
"description": "Pro subscription",
"quantity": 1,
"currency": "EUR",
"amountExclVat": 12.95,
"vatRate": 21,
"vatAmount": 2.72,
"amountInclVat": 15.67
}
],
"currency": "EUR",
"subtotalAmount": 12.95,
"vatAmount": 2.72,
"totalAmount": 15.67,
"issuedAt": "2025-04-12T00:00:00.000Z",
"isPaid": true
}
],
"first_page_url": "https://api.mijnklantportaal.nl/v1/invoices?page=1",
"from": 1,
"next_page_url": "https://api.mijnklantportaal.nl/v1/invoices?page=2,",
"path": "https://api.mijnklantportaal.nl/v1/invoices",
"per_page": 15,
"prev_page_url": null,
"to": 15
}Getting all the invoices sent by MijnKlantportaal for license fees and other costs
curl --request GET \
--url https://api.mijnklantportaal.nl/v1/invoices \
--header 'Authorization: Bearer <token>'{
"current_page": 1,
"data": [
{
"id": "fac_abc12345def678",
"invoiceNumber": "MKP-2025.0010",
"lines": [
{
"id": "fcl_abc12345def678",
"description": "Pro subscription",
"quantity": 1,
"currency": "EUR",
"amountExclVat": 12.95,
"vatRate": 21,
"vatAmount": 2.72,
"amountInclVat": 15.67
}
],
"currency": "EUR",
"subtotalAmount": 12.95,
"vatAmount": 2.72,
"totalAmount": 15.67,
"issuedAt": "2025-04-12T00:00:00.000Z",
"isPaid": true
}
],
"first_page_url": "https://api.mijnklantportaal.nl/v1/invoices?page=1",
"from": 1,
"next_page_url": "https://api.mijnklantportaal.nl/v1/invoices?page=2,",
"path": "https://api.mijnklantportaal.nl/v1/invoices",
"per_page": 15,
"prev_page_url": null,
"to": 15
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Paginated response with invoices
Current page of the response
1
Array of Invoice objects
Show child attributes
Endpoint to go to the first page of objects
"https://api.mijnklantportaal.nl/v1/invoices?page=1"
Offset of the current page
1
Endpoint to get the next batch of objects, if available
"https://api.mijnklantportaal.nl/v1/invoices?page=2,"
Current used endpoint
"https://api.mijnklantportaal.nl/v1/invoices"
Amount of object returned per page. Default is 15 objects
15
Endpoint to get the previous batch of object, if available
null
Next offset of objects
15