The eight monitored zones
The API monitors the following zones, which were chosen to cover the most agriculturally significant and climate-sensitive regions of LATAM (excluding Brazil):Alert types and thresholds
Each zone is evaluated independently against the following rules. Alerts are only generated when a threshold is crossed.
Severity levels are
alta (highest), media, and baja. Currently, fire and heat events can reach alta; drought and rain alerts are capped at media unless the API is extended in a future release.
Querying alerts via GraphQL
The alerts feature is available exclusively through the GraphQL endpoint (/graphql). There is no REST equivalent.
1
Send the GraphQL query
Send the following query to the GraphQL endpoint. No variables are required — the zones are fixed server-side.Using curl:A sample response when two alerts are active:The
alerts array is sorted by severity — alta first, then media, then baja — so the most critical conditions always appear at the top.2
Filter by severity
The API returns all alerts for all zones in a single response. To focus on critical events only, filter the If you want to send push notifications only for
alerts array on the client side:alta severity, apply this filter before dispatching.3
Filter by alert type
To monitor only a specific hazard category — for example, fire events for a fire-insurance dashboard — filter by the Valid
alertType field:alertType values: fire, heat, drought, rain.