List All Invoices ================= .. role:: green **Type:** :guilabel:`GET` .. py:function:: 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 .. code-block:: shell :caption: Curl curl --request GET \ --url https://cloud.syminet.com/api/v1/billing/invoices \ --header "authorization:bearer $API_TOKEN" .. code-block:: json :caption: 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:** :green:`200 OK`