Skip to main content
GET
Normalized invoice/payment history

Authorizations

Authorization
string
header
required

A Cognito access token, issued through the dashboard's own sign-up and sign-in pages (a backend-for-frontend; there is no Cognito Hosted UI) and sent as Authorization: Bearer <jwt>. Dashboard operations require this scheme and cannot be called with an API key, with no exception. GET /v1/usage and GET /v1/limits offered both schemes from 0.8.0; 0.8.1 withdrew that, because the control-plane API serves them alone and its authorizer has no API-key branch. An account_id supplied by the client is ignored; all reads/writes are scoped server-side to the authenticated account.

Query Parameters

limit
integer
default:20

Maximum number of items to return.

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from a previous page's next_cursor. An opaque pagination cursor. Callers must treat it as opaque.

Pattern: ^[A-Za-z0-9_-]{1,512}$

Response

A page of invoices.

data
object[]
required
Maximum array length: 100
next_cursor
required

An opaque pagination cursor, or null when there is no next page.

Pattern: ^[A-Za-z0-9_-]{1,512}$