v1
latestOpenAPI 3.1.02026-07-265817860.8 KBinvoices
Lists invoices with cursor pagination and optional filters (customer, entity, status, processor). Pass start_cursor: "" (or omit) for the first page; use next_cursor from a prior response for subsequent pages.
post/v1/invoices.list
Headers
x-api-versionstring required
Request body
Example request
{
"start_cursor": "",
"limit": 10,
"customer_id": "cus_123",
"status": [
"open",
"paid"
]
}Response
OK
Example response
{
"list": [
{
"id": "inv_2b3c4d5e6f7g8h",
"customer_id": "cus_123",
"entity_id": null,
"plan_ids": [
"pro_plan"
],
"stripe_id": "in_1A2B3C4D5E6F7G8H",
"processor_type": "stripe",
"status": "paid",
"total": 29.99,
"amount_paid": 29.99,
"refunded_amount": 0,
"currency": "usd",
"created_at": 1759247877000,
"hosted_invoice_url": "https://invoice.stripe.com/i/acct_123/test_456"
}
],
"next_cursor": null
}