List Invoices (v1)
Returns paginated, formatted invoices for the authenticated user within a required date range, with a next_token for keyset pagination.
Authorizations
API key must be provided in the Authorization header
Query Parameters
when (required). Date range in unix seconds (UTC). Operators: gte, gt, lte, lt.
service (optional). Filter by payment service: transfer, stripe_payments, bitpay, coinbase, crypto.com, instance_prepay, paypal_manual, wise_manual. Operators: eq, neq, in, notin.
Examples:
Sort results by column. Columns: paid_on, amount_cents, when. Direction: asc or desc (default desc).
Example: [{"col":"paid_on","dir":"desc"}]
Sort newest invoices first. If order_by is also set, order_by takes precedence.
true
Max results per page.
x >= 120
Pass the next_token value from the previous response to fetch the next page of results. When the response returns next_token: null, there are no more pages.
"eyJ2YWx1ZXMiOiB7ImlkIjogMjY3MjU5N30sICJvc19wYWdlIjogMH0="
Response
Invalid date range or no results: {"success": false, "error": "Invalid date range", ...} or {"success": true, "count": 0, "results": [], ...}