⌘K
GET /accounts/me/invoices/infos/:period
Returns a summary of orders and charges for a billing period.
Base URL: https://api.geocerta.io
Sandbox URL: https://api-staging.geocerta.io
Authentication required. Include your API key in the
api-keyheader. See Authentication.
Endpoint
GET /accounts/me/invoices/infos/:period
Path Parameters
| Parameter | Type | Description |
|---|---|---|
period | string | Billing period identifier (e.g. 2025-05) |
Response
200 OK — returns an invoice summary for the period.
Response fields
| Field | Type | Description |
|---|---|---|
period | string | The billing period |
reports | number | Total number of reports in this period |
sub_total | number | Subtotal before tax (GBP) |
tax | number | VAT at 20% (GBP) |
total | number | Total including tax (GBP) |
info | array | Per-product breakdown |
info[].code | string | Product code |
info[].quantity | number | Number of reports for this product |
info[].total | number | Total charge for this product (GBP) |
Errors
| Status | Message | Cause |
|---|---|---|
401 | Unauthorized | Missing or invalid API key |
404 | No account associated with the API key | API key is not linked to an account |
Example
curl "https://api.geocerta.io/accounts/me/invoices/infos/2025-05" \
-H "api-key: YOUR_API_KEY"