BillKit/Docs Console
Invoices

List invoices

List invoices, newest first.

GET/v1/invoices
Operation list_invoices · Scope invoices:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
customer_idstring | null · queryoptionalAt most 64 characters.
subscription_idstring | null · queryoptionalAt most 64 characters.
payment_idstring | null · queryoptionalAt most 64 characters.
statusstring | null · queryoptionalAt most 32 characters.
limitinteger · queryoptionalDefaults to 10. Between 1 and 100.
starting_afterstring | null · queryoptionalAt most 128 characters.
expandstring | null · queryoptionalAt most 256 characters.

Cursor-paginated. limit caps a page and starting_after takes the last id you saw.

Returns

Returns a page of InvoiceResponse objects. data holds the page and has_more says whether another one exists. Page forward by passing the last id of the page as starting_after; a short page is not the end of the list.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the invoices:read scope.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/invoices \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "data": [
    {
      "billing_address_at_invoice_time": {
        "key": "value"
      },
      "created": 1789392000,
      "currency": "EUR",
      "customer": {
        "country_code": "NL",
        "email": "ada@example.com",
        "id": "obj_9XKp2vQ1",
        "name": "Ada Lovelace",
        "object": "customer.summary"
      },
      "customer_business_name_at_invoice_time": "string",
      "customer_email_at_invoice_time": "ada@example.com",
      "customer_id": "cus_9XKp2vQ1",
      "customer_name_at_invoice_time": "string",
      "customer_vat_number_at_invoice_time": "string",
      "discount_cents": 1900,
      "due_at": 1789392000,
      "id": "inv_9XKp2vQ1",
      "lines": [
        {
          "amount_cents": null,
          "currency": null,
          "description": null,
          "id": null,
          "object": null,
          "period_end": null,
          "period_start": null,
          "quantity": null,
          "tax_rate_basis_points": null
        }
      ],
      "livemode": false,
      "number": "string",
      "object": "invoice",
      "one_shot_payment_id": "osp_9XKp2vQ1",
      "paid_at": 1789392000,
      "payment_id": "pay_9XKp2vQ1",
      "pdf_url": "https://acme.example/welcome",
      "status": "string",
      "subscription_id": "sub_9XKp2vQ1",
      "subtotal_cents": 1900,
      "tax_cents": 1900,
      "tax_country_code": "NL",
      "tax_reverse_charged": false,
      "total_cents": 1900,
      "voided_at": 1789392000
    }
  ],
  "has_more": false,
  "object": "list"
}