GET/v1/climate
Objective climate facts from the nearest NOAA station (no score).
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
zip | string | Yes | US zip code. |
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/climate?zip=59718"[ 200 OK ]
{
"status": "success",
"data": {
"zip": "59718",
"city": "Bozeman",
"state": "MT",
"climate": {
"avg_temp_f": 44.4,
"summer_high_f": 82.1,
"winter_low_f": 13.9,
"precip_inches": 19.2,
"snow_inches": 61.5,
"hot_days_over_90f": 6,
"freezing_days_under_32f": 190,
"station": "USC00241044",
"station_name": "BOZEMAN MT US",
"source": "noaa_normals_1991_2020"
}
}
}[ TRY IT ]Open playground →
GET/v1/climate?zip=59718
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/climate?zip=59718" \ -H "Authorization: Bearer $ATLASBLOCK_API_KEY"
[ EVERY REQUEST ]
Send an Authorization: Bearer key against the base URL https://atlasblock.dev/api. Every call counts toward your plan quota. See the overview for authentication, rate limits, and status codes.
