GlobMaps provides production-ready geo-intelligence APIs for outbreak detection, climate risk mapping, and global supply chain visibility. Every endpoint returns structured JSON with a consistent response envelope, enabling rapid integration at enterprise scale.
GlobMaps offers professional geo-intelligence modules: Flood API, Wildfire API, Drought API, Climate Risk Scoring API, Outbreak Radar (disease surveillance), Supply Chain Intelligence (port monitoring), GeoLLM Copilot (natural language interface), Smart Alerts (geo-triggered alerts), and API Access (programmatic data access).
Authenticate every production request by including your API key in the X-API-Key header. Keys are issued per account and scoped to specific modules. Obtain or rotate your key from the GlobMaps dashboard at any time.
Integrate GlobMaps in minutes. Send a GET request with your API key to retrieve real-time risk intelligence (Flood, Wildfire, Outbreak, etc.) for any coordinate — no complex setup required.
Access dedicated production endpoints: /v1/flood-api, /v1/wildfire-api, /v1/drought-api, /v1/climate-risk, /v1/outbreak-radar, and /v1/supply-chain. Each returns high-availability, real-time intelligence.
All GlobMaps API responses share a consistent envelope — requestId for tracing, asOf for data freshness, a typed data payload, and an optional warnings array for non-blocking advisories.
GlobMaps uses standard HTTP status codes. Error responses include a machine-readable code, a human-readable message, and contextual details to help you diagnose and resolve issues quickly.
Retrieve real-time risk data for Thailand using your preferred language.
Every GlobMaps API response follows a consistent envelope structure.
{
"requestId": "req_abc123",
"asOf": "2026-04-19T10:30:00Z",
"data": {},
"warnings": []
}Error responses include a machine-readable code and contextual details for quick diagnosis.
{
"requestId": "req_abc123",
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid regionId",
"details": {
"field": "regionId"
}
}
}