GET /products

Returns a list of all available products.

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 /products

Response

200 OK — returns an array of products.

Product fields

Field Type Description
_id string Unique product identifier
name string Display name
code string Product code — one of resi_core, resi_pro, resi_ultra
description string Short description (may be absent)
created_at string ISO 8601 creation timestamp
updated_at string ISO 8601 last-updated timestamp

Errors

Status Message Cause
401 Unauthorized Missing or invalid API key

Example

curl "https://api.geocerta.io/products" \
  -H "api-key: YOUR_API_KEY"