v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
Billing

List financial statements

Returns the auto-generated financial statements for the authenticated account, paginated and ordered by billing period.

get/v1/billing/invoices

Query parameters

pageinteger
Example:1

Page number to retrieve. Default 1.

per_pageinteger
Example:25

Number of records to return per page. Default 25.

Response

Returns a paginated list of financial statements.

is_emptyboolean required

Indicates whether the statement list is empty.

Example response

{
  "is_empty": false,
  "invoices": [
    {
      "id": 1,
      "from_date": "2023-08-01",
      "to_date": "2023-08-31",
      "amount": "25.00"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total": 1,
    "total_pages": 1
  }
}