GET/v1/climate/stations/{stationId}
One NOAA station's 1991–2020 climate normals.
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
stationId | string (path) | Yes | NOAA station id (e.g. USW00013881). |
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/climate/stations/USW00013881"[ 200 OK ]
{
"status": "success",
"data": {
"station": {
"station": "USW00013881",
"station_name": "CHARLOTTE DOUGLAS AP NC",
"latitude": 35.21,
"longitude": -80.94,
"avg_temp_f": 61.2,
"summer_high_f": 88.5,
"winter_low_f": 32.1,
"precip_inches": 43.5,
"snow_inches": 2.3,
"hot_days_over_90f": 32,
"freezing_days_under_32f": 55,
"source": "noaa_normals_1991_2020"
}
}
}[ TRY IT ]Open playground →
GET/v1/climate/stations/USW00013881
[ PATH ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/climate/stations/USW00013881" \ -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.
[ MORE IN ENVIRONMENT ]
