Student_vrn,
смотреть через свой сервер.
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
</head>
<body>
<div id="show"></div>
<script> (async () => {
const url = "https://api.darksky.net/forecast/eeaf063f48cd92e5300e9028ce268e12/51.6606,39.2006?exclude=minutely,alerts,hourly,dai ly&flags&lang=ru&units=si";
const {currently} = await fetch(url).then(response => response.json(), () => ({}));
const {summary, temperature, windSpeed} = currently;
const str = `${summary}, температура: ${temperature} °C, скорость ветра: ${windSpeed} м/c`;
show.innerHTML = str;
})()
</script>
</body>
</html>