List All Invoices
Type: GET
- https://cloud.syminet.com/api/v1/billing/invoices
Returns a paginated list of all invoices in your account.
Optional URL Parameters:
- ?page=PAGE_NUMBER
Return page PAGE_NUMBER
Curl
curl --request GET \
--url https://cloud.syminet.com/api/v1/billing/invoices \
--header "authorization:bearer $API_TOKEN"
Response
{
"data": [
{
"amount": 512.6,
"date": "2025-11-01 00:00:00",
"id": 37408
},
{
"amount": 407.17,
"date": "2024-10-01 00:00:00",
"id": 33912
},
{
"amount": 393.16,
"date": "2024-09-01 00:00:00",
"id": 32950
}
],
"page": 1,
"pages": 1,
"results": 3
}
Response: 200 OK