GET /products/:code

Returns a single product by its code.

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/:code

Path Parameters

Parameter Type Description
code string The product code (resi_core, resi_pro, or resi_ultra)

Response

200 OK — returns the product.

Response fields

Field Type Description
_id string Product ID
name string Product display name
code string Product code
description string Product description
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
404 Product not found No product with that code exists

Example

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