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.
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
}
}