Feature: almanac

Page Contents

Historical average temperature for today.

Response Fields

airport_code
temp_high.normal.F
temp_high.normal.C
temp_high.record.F
temp_high.record.C
temp_high.recordyear
temp_low.normal.F
temp_low.normal.C
temp_low.record.F
temp_low.record.C
temp_low.recordyear

Examples

Try with Apigee

Note: replace {{key}} with Your_Key

City within the USA

http://api.wunderground.com/api/Your_Key/almanac/q/CA/San_Francisco.json Show Response
{ "response": { "version": "0.1", "termsofService": "http://www.wunderground.com/weather/api/d/terms.html", "features": { "almanac": 1 } }, "almanac": { "airport_code": "KSFO", "temp_high": { "normal": { "F": "71", "C": "22" }, "record": { "F": "89", "C": "31" }, "recordyear": "1970" }, "temp_low": { "normal": { "F": "54", "C": "12" }, "record": { "F": "48", "C": "8" }, "recordyear": "1953" } } }