GET /accounts/me/invoices/infos/:period/csv

Returns a CSV file of all reports delivered in 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-key header. See Authentication.

Endpoint

GET /accounts/me/invoices/infos/:period/csv

Path Parameters

Parameter Type Description
period string Billing period identifier (e.g. 2025-05)

Response

200 OK — returns a CSV file with Content-Type: text/csv.

Order Reference,Reference,Product Code,Address,Delivery Date,Price
ORD-2025-001,REF-00001,resi_core,"1 Example Street, London, SW1A 1AA",01/05/2025,£80.00
ORD-2025-002,REF-00002,resi_pro,"2 Sample Road, Manchester, M1 1AA",02/05/2025,£80.00

CSV columns

Column Description
Order Reference The order reference
Reference The product line reference
Product Code Product code
Address Site address
Delivery Date Date the report was delivered
Price Report price (formatted, e.g. £80.00)

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/csv" \
  -H "api-key: YOUR_API_KEY" \
  -o "invoice-2025-05.csv"