Skip to main content

API Overview

The Geolocarta REST API provides programmatic access to aerial imagery, cadastral data, and map layer services.

Base URL

https://api.geolocarta.com/v1

Authentication

All requests require an API key or access token in the Authorization header:

Authorization: Bearer YOUR_API_KEY

See Authentication for details.

Response Format

All responses are JSON with consistent structure:

{
"data": { ... },
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-03-15T10:00:00Z"
}
}

Error Responses

{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"details": {}
}
}

HTTP Status Codes

CodeMeaning
200Success
201Created
400Bad request — check parameters
401Unauthorised — invalid API key
403Forbidden — insufficient scope
404Not found
429Rate limited
500Server error

Pagination

List endpoints support cursor-based pagination:

curl "https://api.geolocarta.com/v1/imagery?limit=20&cursor=abc123"

Available Endpoints

EndpointDescription
/v1/imagerySearch and download aerial imagery
/v1/cadastralQuery property boundaries
/v1/geocodingAddress and coordinate lookups
/v1/layersCreate and manage map layers
/v1/tokensGenerate access tokens
/v1/healthAPI health check
Was this page helpful?