Openweathermap JSON example
Example 1: openweathermap api javascript
// Full tutorial: https://www.youtube.com/watch?v=WZNG8UomjSI
fetch(
"https://api.openweathermap.org/data/2.5/weather?q=" +
city +
"&units=metric&appid=" +
apiKey
)
.then((response) => response.json())
.then((data) => console.log(data));
Example 2: openweathermap api tutorial
b190a0605344cc4f3af08d0dd473dd25