LQ
Access current weather data for any location on Earth including over 200,000 cities!
https://api.openweathermap.org/data/2.5/weatherqCity name, state code and country code divided by comma.
appidYour unique API key.
unitsUnits of measurement. standard, metric and imperial.
curl -X GET \ "https://api.openweathermap.org/data/2.5/weather"
{
"coord": {
"lon": 10.99,
"lat": 44.34
},
"weather": [
{
"id": 501,
"main": "Rain",
"description": "moderate rain",
"icon": "10d"
}
],
"base": "stations",
"main": {
"temp": 298.48,
"feels_like": 298.74,
"temp_min": 297.56,
"temp_max": 300.05,
"pressure": 1015,
"humidity": 64
},
"visibility": 10000,
"name": "Zocca",
"cod": 200
}