cURL
curl --request GET \ --url https://api.example.com/api/climate/v1/list-climate-anomalies
{ "anomalies": [ { "zone": "<string>", "period": "<string>", "location": { "latitude": 0, "longitude": 0 }, "tempDelta": 123, "precipDelta": 123, "severity": "ANOMALY_SEVERITY_UNSPECIFIED", "type": "ANOMALY_TYPE_UNSPECIFIED" } ], "pagination": { "nextCursor": "<string>", "totalCount": 123 } }
ListClimateAnomalies retrieves temperature and precipitation anomalies from ERA5 data.
Maximum items per page (1-100).
Cursor for next page.
Optional filter by anomaly severity.
Successful response
ListClimateAnomaliesResponse contains the list of climate anomalies.
Show child attributes
PaginationResponse contains pagination metadata returned alongside list results.
Was this page helpful?