Get forecast from OW

GET https://pro.openweathermap.org/data/2.5/forecast/hourly?lat={{lat}}&lon={{lon}}&appid={{api_key}}

Request Params

KeyDatatypeRequiredDescription
latstring
lonstring
appidstring

RESPONSES

status: OK

"{\n  \"cod\": \"200\",\n  \"message\": 0.0179,\n  \"cnt\": 96,\n  \"list\": [\n   {\n     \"dt\": 1596632400,\n     \"main\": {\n       \"temp\": 289.16,\n       \"feels_like\": 288.41,\n       \"temp_min\": 289.16,\n       \"temp_max\": 289.16,\n       \"pressure\": 1013,\n       \"sea_level\": 1013,\n       \"grnd_level\": 1010,\n       \"humidity\": 78,\n       \"temp_kf\": 0\n     },\n     \"weather\": [\n       {\n         \"id\": 804,\n         \"main\": \"Clouds\",\n         \"description\": \"overcast clouds\",\n         \"icon\": \"04n\"\n       }\n     ],\n     \"clouds\": {\n       \"all\": 100\n     },\n     \"wind\": {\n       \"speed\": 2.03,\n       \"deg\": 252,\n       \"gust\":5.46\n     },\n     \"visibility\": 10000,\n     \"pop\": 0.04,\n     \"sys\": {\n       \"pod\": \"n\"\n     },\n     \"dt_txt\": \"2020-08-05 13:00:00\"\n   },\n   .....\n       ],\n  \"city\": {\n   \"id\": 2643743,\n   \"name\": \"London\",\n   \"coord\": {\n     \"lat\": 51.5085,\n     \"lon\": -0.1258\n   },\n   \"country\": \"GB\",\n   \"timezone\": 0,\n   \"sunrise\": 1568958164,\n   \"sunset\": 1569002733\n  }\n}"