v1
latestSwagger 2.02026-07-132137180.4 KBClimate Normals (Averages)
Returns Historical Climate Normals (Averages) - Given a lat/lon.
Returns Historical Climate Normals (Averages) - Given a lat, and lon. See https://www.weatherbit.io/api for API specific rate limits.
get/normals
Query parameters
latnumber double required
Latitude component of location.
lonnumber double required
Longitude component of location.
start_daystring string required
Start Day (MM-DD).
end_daystring string required
End Day (MM-DD).
tp'daily' | 'hourly' | 'monthly' string
Time period of calculation (daily, monthly, or hourly).
units'S' | 'I' | 'M' string
Convert to units. Default Metric See <a target='blank' href='/api/requests'>units field description</a>
series_year'2010' | '2020' string
Series year for calculation. 2020 for 1991-2020. 2010 for 1981-2010.
keystring string required
Your registered API key.
Response
An Normals Data Object.
Example response
{
"lat": 35.7796,
"lon": -78.6382,
"timezone": "America/New_York",
"sources": [
"era5"
],
"data": [
{
"day": 5,
"month": 2,
"hour": 23,
"temp": 30,
"dewpt": 25,
"max_temp": 32,
"min_temp": 21,
"max_wind_spd": 5,
"wind_spd": 2,
"wind_dir": 200,
"precip": 3.1,
"snow": 30.5
}
]
}