Daily Forecast Schema
A summary of the weather for a given day
Example
{ "date": "2026-02-21", "temp_min": 18, "temp_max": 28.5, "temp_day": 25, "temp_night": 20, "feels_like_min": 15, "feels_like_max": 26, "feels_like_day": 23, "feels_like_night": 18, "precipitation": { "rain": 1.5, "snow": 1.5, "freezing_rain": 1.5, "sleet": 1.5, "ice_pellets": 1.5 }, "clouds_avg": 45, "pop": 60, "wind_speed_max": 15.3, "wind_gust_max": 22.1, "description": { "code": 520, "name": "Rain" } }
Attributes
-
date
stringForecast date in YYYY-MM-DD format (local timezone).
Example:
2026-02-21 -
temp_min
numberMinimum temperature for the day. Units will be Celsius for metric or Fahrenheit for imperial
Example:
18 -
temp_max
numberMaximum temperature for the day. Units will be Celsius for metric or Fahrenheit for imperial
Example:
28.5 -
temp_day
numberDaytime temperature. Units will be Celsius for metric or Fahrenheit for imperial
Example:
25 -
temp_night
numberNighttime temperature. Units will be Celsius for metric or Fahrenheit for imperial
Example:
20 -
feels_like_min
numberMinimum apparent temperature for the day. Units will be Celsius for metric or Fahrenheit for imperial
Example:
15 -
feels_like_max
numberMaximum apparent temperature for the day. Units will be Celsius for metric or Fahrenheit for imperial
Example:
26 -
feels_like_day
numberDaytime apparent temperature. Units will be Celsius for metric or Fahrenheit for imperial
Example:
23 -
feels_like_night
numberNighttime apparent temperature. Units will be Celsius for metric or Fahrenheit for imperial
Example:
18 -
precipitation
objectAn object that describes the total amount of precipitation for a given day
Object Properties
Property Type Description Schema rainnumberTotal rainfall amount for the day. Units are millimeters for metric or inches for imperialExample:
1.5snownumberTotal snowfall amount for the day. Units are centimeters for metric or inches for imperialExample:
1.5freezing_rainnumberTotal freezing rain amount for the day. Units are millimeters for metric or inches for imperialExample:
1.5sleetnumberTotal sleet amount for the day. Units are millimeters for metric or inches for imperialExample:
1.5ice_pelletsnumberTotal ice pellet accumulation for the day. Units are millimeters for metric or inches for imperialExample:
1.5 -
clouds_avg
integerAverage cloud coverage percentage (0-100)
Min:
0Max:100Example:
45 -
pop
integerProbability of precipitation percentage (0-100)
Min:
0Max:100Example:
60 -
wind_speed_max
numberMaximum wind speed for the day. Units will be km/h for metric or mph for Imperial
Example:
15.3 -
wind_gust_max
numberMaximum wind gust for the day. Units will be km/h for metric or mph for Imperial
Example:
22.1 -
description
objectProvides a human and machine readable description of the weather
Object Properties
Property Type Description Schema codeintegerNumeric weather condition codeExample:
520Allowed values: 100- Clear200- Mostly sunny210- Partly cloudy220- Mostly cloudy230- Cloudy300- Fog301- Mist310- Smoke400- Chance of thunderstorms410- Thunderstorm420- Heavy thunderstorm500- Drizzle510- Light rain520- Rain530- Heavy rain590- Mixed (daily only)600- Freezing rain610- Sleet620- Ice pellets700- Light snow710- Snow720- Heavy snow730- Blowing snow740- Blizzard
namestringHuman-readable weather condition nameExample:
Rain