BillKit/Docs Console
Credit notes

List credit notes

List credit notes, newest first.

GET/v1/credit_notes
Operation list_credit_notes · Scope credit_notes:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
invoice_idstring | null · queryoptionalNo description in the spec.
customer_idstring | null · queryoptionalNo description in the spec.
limitinteger · queryoptionalDefaults to 10. Between 1 and 100.
starting_afterstring | null · queryoptionalAt most 128 characters.

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

Returns

Returns a page of CreditNoteResponse 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 credit_notes:read scope.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/credit_notes \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "data": [
    {
      "created": 1789392000,
      "currency": "EUR",
      "customer_id": "cus_9XKp2vQ1",
      "id": "cn_9XKp2vQ1",
      "invoice_id": "inv_9XKp2vQ1",
      "livemode": false,
      "number": "string",
      "object": "credit_note",
      "reason": "string",
      "refund_id": "re_9XKp2vQ1",
      "subtotal_cents": 1900,
      "tax_cents": 1900,
      "tax_country_code": "NL",
      "tax_rate_basis_points": 0,
      "tax_reverse_charged": false,
      "total_cents": 1900
    }
  ],
  "has_more": false,
  "object": "list"
}