GET/v1/invoices

List invoices

Returns paginated invoices for your merchant account.

Authentication

Secret Key — send Authorization: Bearer YOUR_KEY header.

Query parameters

ParameterTypeRequiredDescription
statusstringNodraft | sent | paid | void
cursorstringNoPagination cursor
limitintegerNoPage size (default 25)

Response fields

FieldTypeDescription
itemsarrayInvoice objects
next_cursorstring | nullCursor for next page

Code examples

bash
# Examples for "invoices-list" not configured.

Response example

json
{ "success": true, "data": { "items": [], "next_cursor": null } }