HourlyForecast Data Response
This object contain an hourly forecast at a specific point in time, representative of
weather conditions at the top of the hour. Output is available in either imperial or
metric units.
All response parameters should be treated as optionally available.
Properties
time
integerThe UNIX timestamp for the hourly forecast. (GMT timezone)
summary
stringA human-readable summary of the weather in this hourly forecast.
icon
stringAn icon identifier representative of the weather summary.
score
integerA value indicating the severity of the weather conditions. A higher score indicates worse weather.
temperature
floatThe air temperature. (Units: Degrees Fahrenheit or Celsius)
apparentTemperature
float
The apparent air temperature ("feels like"). (Units: Degrees Fahrenheit or Celsius.)
precipType
stringThe type of precipitation occurring. Values will be
none
, rain
, snow
, or sleet
(referring to a wintery mix).precipProbability
floatThe probability of precipitation occurring, from 0 to 1.
precipIntensity
floatThe intensity of precipitation expected. (Units: Inches/hour or millimeters/hour)
precipAccumulation
floatThe amount of snowfall accumulation expected. (Units: Inches or millimeters)
dewPoint
floatThe estimated dew point temperature. (Units: Degrees Fahrenheit or Celsius)
humidity
floatThe relative humidity, from 0 to 1.
pressure
floatThe sea-level air pressure. (Units: Always reported in millibars)
windSpeed
floatThe expected wind speed. (Units: Miles/hour or kilometers/hour)
windGust
floatThe maximum expected wind gust speed. (Units: Miles/hour or kilometers/hour)
windBearing
integer
The direction from which the wind is blowing. (Units: Degrees clockwise from true north)
skyCover
floatThe percentage of sky occluded by clouds, from 0 to 1.
visibility
floatThe expected average visibility. (Units: Miles or kilometers)
Sample output
{ "time": 1632682800, "summary": "Clear", "icon": "clear-day", "temperature": 81.6, "apparentTemperature": 81.6, "precipType": "none", "precipProbability": 0, "precipIntensity": 0, "precipAccumulation": 0, "dewPoint": 29.73, "humidity": 0.15, "pressure": 1013.1, "windSpeed": 5.48, "windGust": 10.99, "windBearing": 198, "skyCover": 0.11, "visibility": 10, "score": 0 }