The conditions/summary endpoint summarizes interpolated global current, historical, and forecast weather conditions. Data is available for the location and time requested, leveraging a proprietary blend of data, including weather station observations, radar & satellite information, global & regional models, and other proprietary sources.
Summaries are returned as daily summaries or returned for a specific time interval, such as 6-hour summaries.
Condition summaries requests can return up to 24 hours (1 day) per API request.
Historical conditions are available from April 2011 through today.
Use our wizard to try out this endpoint
The following actions are supported with the conditions/summary endpoint:
:id | Requesting data by using the :id action is used for returning data for a particular item that has an ID associated with it. This is the primary method for requesting general weather information for a single location (observations, forecasts, advisories, etc.) as the location's name or a zip code serves as the id. Other endpoints may expect a certain value for the ID, such as storm cells whose ID value is a combination of the radar site identifier and unique identifier assigned to every storm cell. Refer to an endpoint's detailed documentation for specific information regarding how to use the :id action. |
route | The route action returns data for points along a given route. This can be useful to obtain weather information along a transportation route, trails and more. The route is a series of locations, usually latitude/longitudes provided via the p query parameter or for longer routes via GeoJSON within a POST request. The route will return an array of GeoJSON points with the requested data for each point. |
The following parameters are optional unless otherwise noted:
p | p=:place |
Defines the location to query data for. Refer to the list of supported place value formats. |
for | for=:string |
Returns the results starting for the time frame specified. The for parameter is an alias of the from , but useful to indicate a specific time versus a time rangeSupports a UNIX timestamp or a specific date string. Alternatively, common date formats supported by the PHP strtotime() function will be accepted; however, commas are not accepted. Examples: for=tomorrow for=friday for=1302883980 for=MM/DD/YYYY for=YYYY/MM/DD for=+2hours for=2017-02-27 5:00 PM |
from | from=:string |
Returns the results starting from the value specified. For best practices we recommend using the to parameter as well to define a specific time frame.Supports a UNIX timestamp or a specific date string. Alternatively, common date formats supported by the PHP strtotime() function will be accepted; however, commas are not accepted. Examples: from=tomorrow from=friday from=1302883980 from=MM/DD/YYYY from=YYYY/MM/DD from=+2hours from=2017-02-27 5:00 PM |
to | to=:string |
Returns the results between now and the value specified. For best practices we recommend using the from parameter as well to define a specific time frame. When used in conjunction with the from parameter, the value of to will be relative to the value of from, not relative to the current time. Supports a UNIX timestamp or a specific date string. Alternatively, common date formats supported by the PHP strtotime() function will be accepted; however, commas are not accepted. Examples: to=+6hours to=+5days to=1302883980 to=MM/DD/YYYY to=YYYY/MM/DD to=2017-02-27 5:00 PM |
plimit | plimit=:total |
Applied only on the periods property, the total number of periods to return as an integer. The maximum plimit for this endpoint is 24. |
psort | psort=:string |
Applied only on the periods property, used to sort results based on certain fields contained within the periods. |
pskip | pskip=:number |
Applied only on the periods property, used to skip over a specific number of periods in the data set. |
filter | filter=:string |
Predefined filters for limiting the results. The filter value can be a single, comma-delimited or a semicolon delimited string of filter names. |
The following filters can be passed to the filter parameter to reduce the results that are returned:
day | (Default) Returns a daily summary. The conditions/summary endpoint can return 1 daily summary per API request. |
#hr | Returns forecast data for the specified interval starting at the locale's current time. Example values: 1hr, 2hr, 3hr, 4hr, 6hr, 12hr, and 24hr NOTE: The conditions/summary endpoint is limited to up to 24 hours max per API query. |
Default Sort: dt:1
You can use the following fields to sort data. Review the sorting docs page for more information on the sort functionality.
dt | Used with the psort parameter. Sort based on the conditions date/time |
The /[:endpoint]/[:action]?
portion within the query template below can be exchanged with any of the examples. Also, please note you will need to input your client credentials in the [ID]
and [SECRET]
fields which can be found under the Apps section of the members area.
https://api.aerisapi.com/[:endpoint]/[:action]?client_id=[ID]&client_secret=[SECRET]
Returns today's summary of the weather conditions for zip code 55403/conditions/summary/55403?
Return to today's summary of weather conditions for the specified latitude/longitude/conditions/summary/45.25,-95.25?
Return yesterday's daily weather condition summary for Paris, France/conditions/summary/paris,france?from=yesterday
Return 6 hour weather condition summaries from midnight today through the current time./conditions/summary/minneapolis,mn?from=today midnight&to=now&filter=4hr
The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.
{
"loc":{
"lat":37.22957,
"long":-80.41394
},
"place":{
"name":"blacksburg",
"state":"va",
"country":"us"
},
"periods":[
[
{
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00",
"range":{
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00",
"count":12
},
"temp":{
"maxC":15.6,
"minC":11.21,
"avgC":12.83,
"maxF":60.08,
"minF":52.17,
"avgF":55.09,
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"feelslike":{
"maxC":13,
"minC":11,
"avgC":12.08,
"maxF":55.4,
"minF":51.8,
"avgF":53.75,
"maxTimestamp":1592316000,
"maxDateTimeISO":"2020-06-16T10:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"dewpoint":{
"maxC":13,
"minC":10.39,
"avgC":11.87,
"maxF":55.4,
"minF":50.71,
"avgF":53.37,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"humidity":{
"max":99.625,
"min":83,
"avg":94.479166666667,
"maxTimestamp":1592305200,
"maxDateTimeISO":"2020-06-16T07:00:00-04:00",
"minTimestamp":1592319600,
"minDateTimeISO":"2020-06-16T11:00:00-04:00"
},
"windSpeed":{
"maxKTS":7,
"minKTS":3,
"avgKTS":4.42,
"maxKPH":12.96,
"minKPH":5.56,
"avgKPH":8.18,
"maxMPH":8.06,
"minMPH":3.45,
"avgMPH":5.08,
"maxTimestamp":1592312400,
"maxDateTimeISO":"2020-06-16T09:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00",
"maxDirDEG":52,
"maxDir":"NE",
"minDirDEG":63,
"minDir":"ENE"
},
"windGust":{
"maxKTS":12,
"minKTS":10,
"avgKTS":10.92,
"maxKPH":22.22,
"minKPH":18.52,
"avgKPH":20.22,
"maxMPH":13.81,
"minMPH":11.51,
"avgMPH":12.56,
"maxTimestamp":1592283600,
"maxDateTimeISO":"2020-06-16T01:00:00-04:00",
"minTimestamp":1592294400,
"minDateTimeISO":"2020-06-16T04:00:00-04:00"
},
"precip":{
"maxMM":0.1,
"minMM":0,
"avgMM":0,
"totalMM":0.1,
"maxIN":0,
"minIN":0,
"avgIN":0,
"totalIN":0,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"snow":{
"maxCM":0,
"minCM":0,
"avgCM":0,
"totalCM":0,
"maxIN":0,
"minIN":0,
"avgIN":0,
"totalIN":0,
"maxTimestamp":1592280000,
"maxDateTimeISO":"2020-06-16T00:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"pressure":{
"maxMB":1027,
"minMB":1026,
"avgMB":1026.5,
"maxIN":30.33,
"minIN":30.3,
"avgIN":30.31,
"maxTimestamp":1592280000,
"maxDateTimeISO":"2020-06-16T00:00:00-04:00",
"minTimestamp":1592287200,
"minDateTimeISO":"2020-06-16T02:00:00-04:00"
},
"visibility":{
"maxKM":24.135,
"minKM":16.108,
"avgKM":20.335,
"maxMI":14.997,
"minMI":10.009,
"avgMI":12.635,
"maxTimestamp":1592298000,
"maxDateTimeISO":"2020-06-16T05:00:00-04:00",
"minTimestamp":1592316000,
"minDateTimeISO":"2020-06-16T10:00:00-04:00"
},
"sky":{
"max":100,
"min":81,
"avg":94.260416666667,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592316000,
"minDateTimeISO":"2020-06-16T10:00:00-04:00",
"coded":[
{
"code":"BK",
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592294400,
"dateTimeISO":"2020-06-16T04:00:00-04:00"
},
{
"code":"BK",
"timestamp":1592301600,
"dateTimeISO":"2020-06-16T06:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592305200,
"dateTimeISO":"2020-06-16T07:00:00-04:00"
},
{
"code":"BK",
"timestamp":1592316000,
"dateTimeISO":"2020-06-16T10:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592319600,
"dateTimeISO":"2020-06-16T11:00:00-04:00"
}
]
},
"weather":{
"phrase":"Mostly Cloudy with Drizzle",
"primary":"Drizzle",
"primaryCoded":":R,:L",
"icon":"drizzle.png",
"coded":[
{
"code":"L:L:RW",
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00"
},
{
"code":"C:L:RW",
"timestamp":1592287200,
"dateTimeISO":"2020-06-16T02:00:00-04:00"
},
{
"code":"C:RW:L",
"timestamp":1592301600,
"dateTimeISO":"2020-06-16T06:00:00-04:00"
},
{
"code":":R,:L",
"timestamp":1592305200,
"dateTimeISO":"2020-06-16T07:00:00-04:00"
},
{
"code":"O:L:L",
"timestamp":1592308800,
"dateTimeISO":"2020-06-16T08:00:00-04:00"
},
{
"code":"L:R:L",
"timestamp":1592316000,
"dateTimeISO":"2020-06-16T10:00:00-04:00"
}
]
},
"solrad":{
"maxWM2":199,
"minWM2":0,
"avgWM2":51,
"totalWM2":609,
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"uvi":{
"max":1,
"min":0,
"avg":0.25,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
}
}
]
],
"profile":{
"tz":"America\/New_York",
"tzname":"EDT",
"tzoffset":-14400,
"isDST":true,
"elevFT":null,
"elevM":null
}
}
{
"type":"FeatureCollection",
"features":[
{
"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[
-80.41394,
37.22957
]
},
"properties":{
"loc":{
"lat":37.22957,
"long":-80.41394
},
"place":{
"name":"blacksburg",
"state":"va",
"country":"us"
},
"periods":[
[
{
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00",
"range":{
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00",
"count":12
},
"temp":{
"maxC":15.6,
"minC":11.21,
"avgC":12.83,
"maxF":60.08,
"minF":52.17,
"avgF":55.09,
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"feelslike":{
"maxC":13,
"minC":11,
"avgC":12.08,
"maxF":55.4,
"minF":51.8,
"avgF":53.75,
"maxTimestamp":1592316000,
"maxDateTimeISO":"2020-06-16T10:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"dewpoint":{
"maxC":13,
"minC":10.39,
"avgC":11.87,
"maxF":55.4,
"minF":50.71,
"avgF":53.37,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592301600,
"minDateTimeISO":"2020-06-16T06:00:00-04:00"
},
"humidity":{
"max":99.625,
"min":83,
"avg":94.479166666667,
"maxTimestamp":1592305200,
"maxDateTimeISO":"2020-06-16T07:00:00-04:00",
"minTimestamp":1592319600,
"minDateTimeISO":"2020-06-16T11:00:00-04:00"
},
"windSpeed":{
"maxKTS":7,
"minKTS":3,
"avgKTS":4.42,
"maxKPH":12.96,
"minKPH":5.56,
"avgKPH":8.18,
"maxMPH":8.06,
"minMPH":3.45,
"avgMPH":5.08,
"maxTimestamp":1592312400,
"maxDateTimeISO":"2020-06-16T09:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00",
"maxDirDEG":52,
"maxDir":"NE",
"minDirDEG":63,
"minDir":"ENE"
},
"windGust":{
"maxKTS":12,
"minKTS":10,
"avgKTS":10.92,
"maxKPH":22.22,
"minKPH":18.52,
"avgKPH":20.22,
"maxMPH":13.81,
"minMPH":11.51,
"avgMPH":12.56,
"maxTimestamp":1592283600,
"maxDateTimeISO":"2020-06-16T01:00:00-04:00",
"minTimestamp":1592294400,
"minDateTimeISO":"2020-06-16T04:00:00-04:00"
},
"precip":{
"maxMM":0.1,
"minMM":0,
"avgMM":0,
"totalMM":0.1,
"maxIN":0,
"minIN":0,
"avgIN":0,
"totalIN":0,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"snow":{
"maxCM":0,
"minCM":0,
"avgCM":0,
"totalCM":0,
"maxIN":0,
"minIN":0,
"avgIN":0,
"totalIN":0,
"maxTimestamp":1592280000,
"maxDateTimeISO":"2020-06-16T00:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"pressure":{
"maxMB":1027,
"minMB":1026,
"avgMB":1026.5,
"maxIN":30.33,
"minIN":30.3,
"avgIN":30.31,
"maxTimestamp":1592280000,
"maxDateTimeISO":"2020-06-16T00:00:00-04:00",
"minTimestamp":1592287200,
"minDateTimeISO":"2020-06-16T02:00:00-04:00"
},
"visibility":{
"maxKM":24.135,
"minKM":16.108,
"avgKM":20.335,
"maxMI":14.997,
"minMI":10.009,
"avgMI":12.635,
"maxTimestamp":1592298000,
"maxDateTimeISO":"2020-06-16T05:00:00-04:00",
"minTimestamp":1592316000,
"minDateTimeISO":"2020-06-16T10:00:00-04:00"
},
"sky":{
"max":100,
"min":81,
"avg":94.260416666667,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592316000,
"minDateTimeISO":"2020-06-16T10:00:00-04:00",
"coded":[
{
"code":"BK",
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592294400,
"dateTimeISO":"2020-06-16T04:00:00-04:00"
},
{
"code":"BK",
"timestamp":1592301600,
"dateTimeISO":"2020-06-16T06:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592305200,
"dateTimeISO":"2020-06-16T07:00:00-04:00"
},
{
"code":"BK",
"timestamp":1592316000,
"dateTimeISO":"2020-06-16T10:00:00-04:00"
},
{
"code":"OV",
"timestamp":1592319600,
"dateTimeISO":"2020-06-16T11:00:00-04:00"
}
]
},
"weather":{
"phrase":"Mostly Cloudy with Drizzle",
"primary":"Drizzle",
"primaryCoded":":R,:L",
"icon":"drizzle.png",
"coded":[
{
"code":"L:L:RW",
"timestamp":1592280000,
"dateTimeISO":"2020-06-16T00:00:00-04:00"
},
{
"code":"C:L:RW",
"timestamp":1592287200,
"dateTimeISO":"2020-06-16T02:00:00-04:00"
},
{
"code":"C:RW:L",
"timestamp":1592301600,
"dateTimeISO":"2020-06-16T06:00:00-04:00"
},
{
"code":":R,:L",
"timestamp":1592305200,
"dateTimeISO":"2020-06-16T07:00:00-04:00"
},
{
"code":"O:L:L",
"timestamp":1592308800,
"dateTimeISO":"2020-06-16T08:00:00-04:00"
},
{
"code":"L:R:L",
"timestamp":1592316000,
"dateTimeISO":"2020-06-16T10:00:00-04:00"
}
]
},
"solrad":{
"maxWM2":199,
"minWM2":0,
"avgWM2":51,
"totalWM2":609,
"maxTimestamp":1592319600,
"maxDateTimeISO":"2020-06-16T11:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
},
"uvi":{
"max":1,
"min":0,
"avg":0.25,
"maxTimestamp":1592308800,
"maxDateTimeISO":"2020-06-16T08:00:00-04:00",
"minTimestamp":1592280000,
"minDateTimeISO":"2020-06-16T00:00:00-04:00"
}
}
]
],
"profile":{
"tz":"America\/New_York",
"tzname":"EDT",
"tzoffset":-14400,
"isDST":true,
"elevFT":null,
"elevM":null
}
}
}
]
}
The following properties will be provided in every response object:
periods | (array) Array of weather condition summaries, Empty if no available summary across a period. |
periods.#.timestamp | (number) The unix timestamp for the date/time the weather conditions summary. |
periods.#.dateTimeISO | (string) The ISO 8601 date/time for the weather conditions summary |
periods.#.range | (object) An object with the first, and last valid times for the summary and total intervals |
periods.#.range.maxTimestamp | (number) The unix timestamp for the last condition valid time used to generate the summary. |
periods.#.range.maxDateTimeISO | (string) The ISO 8601 date/time for the last condition valid time used to generate the summary. |
periods.#.range.minTimestamp | (number) The unix timestamp for the earliest condition valid time used to generate the summary. |
periods.#.range.minDateTimeISO | (string) The ISO 8601 date/time for the earliest condition valid time used to generate the summary. |
periods.#.range.count | (number) The total number of weather conditions intervals used to create the summary |
periods.#.temp | (object) The temperature summary object, null if unavailable |
periods.#.temp.maxC | (number) The maximum temperature in Celsius |
periods.#.temp.maxF | (number) The maximum temperature in Fahrenheit |
periods.#.temp.maxTimestamp | (number) The unix timestamp that the maximum temperature occurred |
periods.#.temp.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum temperature occurred |
periods.#.temp.minC | (number) The minimum temperature in Celsius |
periods.#.temp.minF | (number) The minimum temperature in Fahrenheit |
periods.#.temp.minTimestamp | (number) The unix timestamp that the minimum temperature occurred |
periods.#.temp.minDateTimeISO | (number) The ISO 8601 date/time that the minimum temperature occurred |
periods.#.temp.avgC | (number) The average temperature in Celsius |
periods.#.temp.avgF | (number) The average temperature in Fahrenheit |
periods.#.feelslike | (object) The Feels Like / apparent temperature summary object, null if unavailable |
periods.#.feelslike.maxC | (number) The maximum feels like temperature in Celsius |
periods.#.feelslike.maxF | (number) The maximum feels like temperature in Fahrenheit |
periods.#.feelslike.maxTimestamp | (number) The unix timestamp that the maximum feels like temperature occurred |
periods.#.feelslike.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum feels like temperature occurred |
periods.#.feelslike.minC | (number) The minimum feels like temperature in Celsius |
periods.#.feelslike.minF | (number) The minimum feels like temperature in Fahrenheit |
periods.#.feelslike.minTimestamp | (number) The unix timestamp that the minimum feels like temperature occurred |
periods.#.feelslike.minDateTimeISO | (string) The ISO 8601 date/time that the minimum feels like temperature occurred |
periods.#.feelslike.avgC | (number) The average feels like temperature in Celsius |
periods.#.feelslike.avgF | (number) The average feels like temperature in Fahrenheit |
periods.#.dewpoint | (object) The dew point summary object, null if unavailable |
periods.#.dewpoint.maxC | (number) The maximum dew point in Celsius |
periods.#.dewpoint.maxF | (number) The maximum dew point in Fahrenheit |
periods.#.dewpoint.maxTimestamp | (number) The unix timestamp that the maximum dew point occurred |
periods.#.dewpoint.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum dew point occurred |
periods.#.dewpoint.minC | (number) The minimum dew point in Celsius |
periods.#.dewpoint.minF | (number) The minimum dew point in Fahrenheit |
periods.#.dewpoint.minTimestamp | (number) The unix timestamp that the minimum dew point occurred |
periods.#.dewpoint.minDateTimeISO | (string) The ISO 8601 date/time that the minimum dew point occurred |
periods.#.dewpoint.avgC | (number) The average dew point in Celsius |
periods.#.dewpoint.avgF | (number) The average dew point in Fahrenheit |
periods.#.humidity | (object) The relative humidity summary object, null if unavailable |
periods.#.humidity.max | (number) The maximum relative humidity. From 0 to 100 |
periods.#.humidity.maxTimestamp | (number) The unix timestamp that the maximum relative humidity occurred |
periods.#.humidity.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum relative humidity occurred |
periods.#.humidity.min | (number) The minimum relative humidity. From 0 to 100 |
periods.#.humidity.minTimestamp | (number) The unix timestamp that the minimum relative humidity occurred |
periods.#.humidity.minDateTimeISO | (string) The ISO 8601 date/time that the minimum relative humidity occurred |
periods.#.humidity.avg | (number) The average relative humidity. From 0 to 100 |
periods.#.windSpeed | (object) The wind speed summary object, null if unavailable |
periods.#.windSpeed.maxKTS | (number) The maximum wind speed in knots |
periods.#.windSpeed.maxKPH | (number) The maximum wind speed in kilometers per hour |
periods.#.windSpeed.maxMPH | (number) The maximum wind speed in miles per hour |
periods.#.windSpeed.maxTimestamp | (number) The unix timestamp that the maximum wind speed occurred |
periods.#.windSpeed.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum wind speed occurred |
periods.#.windSpeed.maxDir | (string) The cardinal wind direction at the time of the maximum wind speed. |
periods.#.windSpeed.maxDirDEG | (number) The wind direction, in degrees, at the time of the maximum wind speed. |
periods.#.windSpeed.minKTS | (number) The minimum wind speed in knots |
periods.#.windSpeed.minKPH | (number) The minimum wind speed in kilometers per hour |
periods.#.windSpeed.minMPH | (number) The minimum wind speed in miles per hour |
periods.#.windSpeed.minTimestamp | (number) The unix timestamp that the minimum wind speed occurred |
periods.#.windSpeed.minDateTimeISO | (string) The ISO 8601 date/time that the minimum wind speed occurred |
periods.#.windSpeed.minDir | (string) The cardinal wind direction at the time of the minimum wind speed. |
periods.#.windSpeed.minDirDEG | (number) The wind direction, in degrees, at the time of the minimum wind speed. |
periods.#.windSpeed.avgKTS | (number) The average wind speed in knots |
periods.#.windSpeed.avgKPH | (number) The average wind speed in kilometers per hour |
periods.#.windSpeed.avgMPH | (number) The average wind speed in miles per hour |
periods.#.windGust | (object) The wind gust speed summary object, null if unavailable |
periods.#.windGust.maxKTS | (number) The maximum wind gust in knots |
periods.#.windGust.maxKPH | (number) The maximum wind gust in kilometers per hour |
periods.#.windGust.maxMPH | (number) The maximum wind gust in miles per hour |
periods.#.windGust.maxTimestamp | (number) The unix timestamp that the maximum wind gust occurred |
periods.#.windGust.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum wind gust occurred |
periods.#.windGust.minKTS | (number) The minimum wind gust in knots |
periods.#.windGust.minKPH | (number) The minimum wind gust in kilometers per hour |
periods.#.windGust.minMPH | (number) The minimum wind gust in miles per hour |
periods.#.windGust.minTimestamp | (number) The unix timestamp that the minimum wind gust occurred |
periods.#.windGust.minDateTimeISO | (string) The ISO 8601 date/time that the minimum wind gust occurred |
periods.#.windGust.avgKTS | (number) The average wind gust in knots |
periods.#.windGust.avgKPH | (number) The average wind gust in kilometers per hour |
periods.#.windGust.avg.MPH | (number) The average wind gust in miles per hour |
periods.#.precip | (object) The precipitation rate summary object. Null if unavailable |
periods.#.precip.maxMM | (number) The maximum precipitation rate in millimeters / hour |
periods.#.precip.maxIN | (number) The maximum precipitation rate in inches / hour |
periods.#.precip.maxTimestamp | (number) The unix timestamp that the maximum precipitation rate occurred |
periods.#.precip.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum precipitation rate occurred |
periods.#.precip.minMM | (number) The minimum precipitation rate in millimeters / hour |
periods.#.precip.minIN | (number) The minimum precipitation rate in inches / hour |
periods.#.precip.minTimestamp | (number) The unix timestamp that the minimum precipitation rate occurred |
periods.#.precip.minDateTimeISO | (string) The ISO 8601 date/time that the minimum precipitation rate occurred |
periods.#.precip.totalMM | (number) The total estimated precipitation for the requested period (daily by default), in millimeters |
periods.#.precip.totalIN | (number) The total estimated precipitation for the requested period (daily by default), in inches |
periods.#.snow | (number) The snowfall rate summary object. Null if unavailable |
periods.#.snow.maxCM | (number) The maximum snowfall rate in centimeters / hour |
periods.#.snow.maxIN | (number) The maximum snowfall rate in inches / hour |
periods.#.snow.maxTimestamp | (number) The unix timestamp that the maximum snowfall rate occurred |
periods.#.snow.maxDateTimeISO | (number) The ISO 8601 date/time that the maximum precipitation rate occurred |
periods.#.snow.minCM | (number) The minimum snowfall rate in centimeters/ hour |
periods.#.snow.minIN | (number) The minimum snowfall rate in inches / hour |
periods.#.snow.minTimestamp | (number) The unix timestamp that the minimum snowfall rate occurred |
periods.#.snow.minDateTimeISO | (number) The ISO 8601 date/time that the minimum precipitation rate occurred |
periods.#.snow.totalCM | (number) The total estimated snowfall in centimeters / hour |
periods.#.snow.totalIN | (number) The total estimated snowfall in inches / hour |
periods.#.pressure | (object) The pressure summary object. Null if unavailable |
periods.#.pressure.maxMB | (number) The maximum mean sea level pressure in millibars |
periods.#.pressure.maxIN | (number) The maximum mean sea level pressure in inches mercury |
periods.#.pressure.maxTimestamp | (number) The unix timestamp that the maximum mean sea level pressure occurred |
periods.#.pressure.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum mean sea level pressure occurred |
periods.#.pressure.minMB | (number) The minimum mean sea level pressure in millibars |
periods.#.pressure.minIN | (number) The minimum mean sea level pressure in inches mercury |
periods.#.pressure.minTimestamp | (number) The unix timestamp that the minimum mean sea level pressure occurred |
periods.#.pressure.minDateTimeISO | (string) The ISO 8601 date/time that the minimum mean sea level pressure occurred |
periods.#.pressure.avgMB | (number) The average mean sea level pressure in millibars |
periods.#.pressure.avgIN | (number) The average mean sea level pressure in inches mercury |
periods.#.visibility | (object) The visibility summary object. Null if unavailable |
periods.#.visibility.maxKM | (number) The maximum visibility in kilometers |
periods.#.visibility.maxMI | (number) The maximum visibility in miles |
periods.#.visibility.maxTimestamp | (number) The unix timestamp that the maximum visibility occurred |
periods.#.visibility.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum visibility occurred |
periods.#.visibility.minKM | (number) The minimum visibility in kilometers |
periods.#.visibility.minMI | (number) The minimum visibility in miles |
periods.#.visibility.minTimestamp | (number) The unix timestamp that the minimum visibility occurred |
periods.#.visibility.minDateTimeISO | (string) The ISO 8601 date/time that the minimum visibility occurred |
periods.#.visibility.avgKM | (number) The average visibility in kilometers |
periods.#.visibility.avgMI | (number) The average visibility in miles |
periods.#.sky | (object) The sky / clouds summary object. Null if unavailable |
periods.#.sky.max | (number) The maximum cloud coverage, from 0 - 100%. |
periods.#.sky.maxTimestamp | (number) The unix timestamp that the maximum cloud coverage occurred |
periods.#.sky.maxDateTimeISO | (string) The ISO 8601 date/time that the maximum cloud coverage occurred |
periods.#.sky.min | (number) The minimum cloud coverage, from 0 - 100%. |
periods.#.sky.minTimestamp | (number) The unix timestamp that the minimum cloud coverage occurred |
periods.#.sky.minDateTimeISO | (string) The ISO 8601 date/time that the minimum cloud coverage occurred |
periods.#.sky.avg | (number) The average cloud coverage, from 0 - 100%. |
periods.#.sky.coded | (array) Array of cloud codes. An entry for each time in the summary the cloud code changed. |
periods.#.sky.coded.#.code | (string) Two letter cloud code. See Cloud codes |
periods.#.sky.coded.#.timestamp | (number) The unix timestamp that the cloud coverage change occurred |
periods.#.sky.coded.#.dateTimeISO | (string) The ISO 8601 date/time that the cloud coverage change occurred |
periods.#.weather | (object) The weather summary object. Null if unavailable |
periods.#.weather.phrase | (string) The weather phrase for the summary period. |
periods.#.weather.primary | (string) The primary weather that occurred during the summary period. |
periods.#.weather.primaryCoded | (string) The coded version of the primary weather that occurred during the summary period. See Weather Codes. |
periods.#.weather.icon | (string) The icon representing the primary weather |
periods.#.weather.coded | (array) An array of weather code. An entry for each time the weather changed during the summary period. |
periods.#.weather.coded.#.code | (string) The weather code. See Weather Codes. |
periods.#.weather.coded.#.timestamp | (number) The unix timestamp that the weather change occurred |
periods.#.weather.coded.#.dateTimeISO | (string) The ISO 8601 date/time that the weather change occurred |
loc.long | (number) The longitude coordinate of the record. |
loc.lat | (number) The latitude coordinate of the record. |
place.name | (string) The place or nearest place to the record. |
place.state | (string) The state abbreviation in which the record is located. This may be null depending on the country. |
place.country | (string) The country abbreviation in which the record is located. |
profile.tz | (string) Timezone name of the location. |
profile.tzname | (string) The timezone abbreviation for the location. |
profile.tzoffset | (number) The timezone offset for the location in seconds. |
profile.isDST | (boolean) True if the location is currently observing Daylight Savings Time (DST), otherwise false. |
Last modified: December 14, 2022