Skip to main content
GET
List invoices

Autorizaciones

Authorization
string
header
requerido

API key sent as a bearer token in the Authorization header.

Parámetros de consulta

limit
integer
predeterminado:25

Maximum number of invoices to return (1–100). Maximum number of invoices to return (1-100).

Rango requerido: 1 <= x <= 100
Ejemplo:

25

starting_after
string

Opaque cursor: return invoices after this invoice id. Cursor: return invoices after this invoice id.

Ejemplo:

"inv_clx123abc456"

external_customer_id
string

Filter to invoices for this external customer id (exact).

Ejemplo:

"cus_9aZ"

email
string

Filter to invoices with this recipient email (exact, case-insensitive).

Ejemplo:

"cliente@example.com"

number
string

Filter to the invoice with this human-readable number (exact, case-insensitive).

Ejemplo:

"2026-000123"

Respuesta

A cursor-paginated page of invoices.

A cursor-paginated page of invoices.

data
object[]
requerido
has_more
boolean
requerido

Whether more invoices exist beyond this page.

Ejemplo:

true

next_cursor
string | null
requerido

Cursor to pass back as starting_after for the next page, or null on the last page.

Ejemplo:

"inv_clx123abc456"

next_url
string | null
requerido

Relative path to the next page, preserving the current filters, or null on the last page.

Ejemplo:

"/v1/invoices?limit=25&starting_after=inv_clx123abc456"