DailyForecast Data Response

This object contains a daily summary forecast. Data elements are similar to those reported by an HourlyForecast, although some additional parameters are only included in the daily forecast, such as minimum/maximum values and "time of" minimum/maximum values. Output is available in either imperial or metric units.
All response parameters should be treated as optionally available.

Properties

time integer
The UNIX timestamp for the hourly forecast. (GMT timezone)
summary string
A human-readable summary of the weather in this hourly forecast.
icon string
An icon identifier representative of the weather summary.
temperatureMax float
The maximum expected temperature. (Units: Degrees Fahrenheit or Celsius)
temperatureMaxTime integer
The UNIX time at which the maximum temperature is expected. (GMT timezone)
temperatureMin float
The minimum expected temperature. (Units: Degrees Fahrenheit or Celsius)
temperatureMinTime integer
The UNIX time at which the minimum temperature is expected. (GMT timezone)
apparentTemperatureMax float
The maximum expected apparent temperature ("feels like"), adjusted for heat index or wind chill. (Units: Degrees Fahrenheit or Celsius)
apparentTemperatureMaxTime integer
The UNIX time at which the maximum apparent temperature is expected. (GMT timezone)
apparentTemperatureMin float
The minimum expected apparent temperature ("feels like"), adjusted for heat index or wind chill. (Units: Degrees Fahrenheit or Celsius)
apparentTemperatureMinTime integer
The UNIX time at which the minimum apparent temperature is expected. (GMT timezone)
precipType string
The type of precipitation occurring. Values will be none, rain, snow, or sleet (referring to a wintery mix).
precipProbability float
The probability of precipitation occurring, from 0 to 1.
precipIntensity float
The intensity of precipitation expected. (Units: Inches/hour or millimeters/hour)
precipIntensityMax float
The maximum expected precipitation intensity. (Units: Inches/hour or millimeters/hour)
precipIntensityMaxTime integer
The UNIX time at which the maximum precipitation is expected. (GMT timezone)
precipAccumulation float
The amount of snowfall accumulation expected. (Units: Inches or millimeters)
dewPoint float
The estimated dew point temperature. (Units: Degrees Fahrenheit or Celsius)
humidity float
The relative humidity, from 0 to 1.
pressure float
The sea-level air pressure. (Units: Always reported in millibars)
windSpeed float
The maximum prevailing wind speed. (Units: Miles/hour or kilometers/hour)
windGust float
The maximum expected wind gust speed. (Units: Miles/hour or kilometers/hour)
windGustTime integer
The UNIX time at which the maximum wind gust speeds are expected. (GMT timezone)
windBearing integer
The direction from which the wind is blowing. (Units: Degrees clockwise from true north)
skyCover float
The percentage of sky occluded by clouds, from 0 to 1.
visibility float
The expected average visibility. (Units: Miles or kilometers)

Sample output

{
  "time": 1632639600,
  "summary": "Clear throughout the day.",
  "icon": "clear-day",
  "temperatureMax": 83.98,
  "temperatureMaxTime": 1632687120,
  "temperatureMin": 57.3,
  "temperatureMinTime": 1632664980,
  "apparentTemperatureMax": 83.48,
  "apparentTemperatureMaxTime": 1632687120,
  "apparentTemperatureMin": 57.79,
  "apparentTemperatureMinTime": 1632664980,
  "precipType": "none",
  "precipProbability": 0,
  "precipIntensity": 0,
  "precipIntensityMax": 0,
  "precipAccumulation": 0,
  "dewPoint": 28.94,
  "humidity": 0.25,
  "pressure": 1013.8,
  "windSpeed": 5.89,
  "windGust": 23.12,
  "windGustTime": 1632697320,
  "windBearing": 243,
  "skyCover": 0.15,
  "visibility": 10,
}