Skip to content

Weather API Config

Hussein Abdeljabbar Ismail Martínez edited this page Apr 5, 2021 · 1 revision

Get your API key from here (there's a 'Get API Key' button under where it says Free). In your server .env file, save your API key with variable name WEATHER_API_KEY.

Example of returned data (yes, it's long):

{
    "lat": 41.3851,
    "lon": 2.1734,
    "timezone": "Europe/Madrid",
    "timezone_offset": 3600,
    "current": {
        "dt": 1616871285,
        "sunrise": 1616823760,
        "sunset": 1616868625,
        "temp": 12.9,
        "feels_like": 11.9,
        "pressure": 1028,
        "humidity": 76,
        "dew_point": 8.78,
        "uvi": 0,
        "clouds": 20,
        "visibility": 10000,
        "wind_speed": 1.03,
        "wind_deg": 140,
        "weather": [
            {
                "id": 801,
                "main": "Clouds",
                "description": "few clouds",
                "icon": "02n"
            }
        ]
    },
    "minutely": [
        {
            "dt": 1616871300,
            "precipitation": 0
        },
        {
            "dt": 1616871360,
            "precipitation": 0
        },
        {
            "dt": 1616871420,
            "precipitation": 0
        },
        {
            "dt": 1616871480,
            "precipitation": 0
        },
        {
            "dt": 1616871540,
            "precipitation": 0
        },
        {
            "dt": 1616871600,
            "precipitation": 0
        },
        {
            "dt": 1616871660,
            "precipitation": 0
        },
        {
            "dt": 1616871720,
            "precipitation": 0
        },
        {
            "dt": 1616871780,
            "precipitation": 0
        },
        {
            "dt": 1616871840,
            "precipitation": 0
        },
        {
            "dt": 1616871900,
            "precipitation": 0
        },
        {
            "dt": 1616871960,
            "precipitation": 0
        },
        {
            "dt": 1616872020,
            "precipitation": 0
        },
        {
            "dt": 1616872080,
            "precipitation": 0
        },
        {
            "dt": 1616872140,
            "precipitation": 0
        },
        {
            "dt": 1616872200,
            "precipitation": 0
        },
        {
            "dt": 1616872260,
            "precipitation": 0
        },
        {
            "dt": 1616872320,
            "precipitation": 0
        },
        {
            "dt": 1616872380,
            "precipitation": 0
        },
        {
            "dt": 1616872440,
            "precipitation": 0
        },
        {
            "dt": 1616872500,
            "precipitation": 0
        },
        {
            "dt": 1616872560,
            "precipitation": 0
        },
        {
            "dt": 1616872620,
            "precipitation": 0
        },
        {
            "dt": 1616872680,
            "precipitation": 0
        },
        {
            "dt": 1616872740,
            "precipitation": 0
        },
        {
            "dt": 1616872800,
            "precipitation": 0
        },
        {
            "dt": 1616872860,
            "precipitation": 0
        },
        {
            "dt": 1616872920,
            "precipitation": 0
        },
        {
            "dt": 1616872980,
            "precipitation": 0
        },
        {
            "dt": 1616873040,
            "precipitation": 0
        },
        {
            "dt": 1616873100,
            "precipitation": 0
        },
        {
            "dt": 1616873160,
            "precipitation": 0
        },
        {
            "dt": 1616873220,
            "precipitation": 0
        },
        {
            "dt": 1616873280,
            "precipitation": 0
        },
        {
            "dt": 1616873340,
            "precipitation": 0
        },
        {
            "dt": 1616873400,
            "precipitation": 0
        },
        {
            "dt": 1616873460,
            "precipitation": 0
        },
        {
            "dt": 1616873520,
            "precipitation": 0
        },
        {
            "dt": 1616873580,
            "precipitation": 0
        },
        {
            "dt": 1616873640,
            "precipitation": 0
        },
        {
            "dt": 1616873700,
            "precipitation": 0
        },
        {
            "dt": 1616873760,
            "precipitation": 0
        },
        {
            "dt": 1616873820,
            "precipitation": 0
        },
        {
            "dt": 1616873880,
            "precipitation": 0
        },
        {
            "dt": 1616873940,
            "precipitation": 0
        },
        {
            "dt": 1616874000,
            "precipitation": 0
        },
        {
            "dt": 1616874060,
            "precipitation": 0
        },
        {
            "dt": 1616874120,
            "precipitation": 0
        },
        {
            "dt": 1616874180,
            "precipitation": 0
        },
        {
            "dt": 1616874240,
            "precipitation": 0
        },
        {
            "dt": 1616874300,
            "precipitation": 0
        },
        {
            "dt": 1616874360,
            "precipitation": 0
        },
        {
            "dt": 1616874420,
            "precipitation": 0
        },
        {
            "dt": 1616874480,
            "precipitation": 0
        },
        {
            "dt": 1616874540,
            "precipitation": 0
        },
        {
            "dt": 1616874600,
            "precipitation": 0
        },
        {
            "dt": 1616874660,
            "precipitation": 0
        },
        {
            "dt": 1616874720,
            "precipitation": 0
        },
        {
            "dt": 1616874780,
            "precipitation": 0
        },
        {
            "dt": 1616874840,
            "precipitation": 0
        },
        {
            "dt": 1616874900,
            "precipitation": 0
        }
    ],
    "hourly": [
        {
            "dt": 1616868000,
            "temp": 12.9,
            "feels_like": 11.33,
            "pressure": 1028,
            "humidity": 76,
            "dew_point": 8.78,
            "uvi": 0,
            "clouds": 20,
            "visibility": 10000,
            "wind_speed": 1.85,
            "wind_deg": 164,
            "wind_gust": 2.21,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02d"
                }
            ],
            "pop": 0.06
        },
        {
            "dt": 1616871600,
            "temp": 13.02,
            "feels_like": 11.84,
            "pressure": 1028,
            "humidity": 75,
            "dew_point": 8.7,
            "uvi": 0,
            "clouds": 18,
            "visibility": 10000,
            "wind_speed": 1.27,
            "wind_deg": 182,
            "wind_gust": 1.71,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616875200,
            "temp": 13.01,
            "feels_like": 11.7,
            "pressure": 1029,
            "humidity": 74,
            "dew_point": 8.49,
            "uvi": 0,
            "clouds": 12,
            "visibility": 10000,
            "wind_speed": 1.37,
            "wind_deg": 194,
            "wind_gust": 1.79,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616878800,
            "temp": 12.91,
            "feels_like": 11.48,
            "pressure": 1029,
            "humidity": 75,
            "dew_point": 8.59,
            "uvi": 0,
            "clouds": 9,
            "visibility": 10000,
            "wind_speed": 1.58,
            "wind_deg": 206,
            "wind_gust": 2.11,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616882400,
            "temp": 12.75,
            "feels_like": 11.33,
            "pressure": 1029,
            "humidity": 76,
            "dew_point": 8.63,
            "uvi": 0,
            "clouds": 6,
            "visibility": 10000,
            "wind_speed": 1.58,
            "wind_deg": 223,
            "wind_gust": 2.19,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616886000,
            "temp": 12.61,
            "feels_like": 11.17,
            "pressure": 1029,
            "humidity": 78,
            "dew_point": 8.59,
            "uvi": 0,
            "clouds": 5,
            "visibility": 10000,
            "wind_speed": 1.7,
            "wind_deg": 245,
            "wind_gust": 2.03,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616889600,
            "temp": 12.48,
            "feels_like": 10.97,
            "pressure": 1029,
            "humidity": 79,
            "dew_point": 8.68,
            "uvi": 0,
            "clouds": 5,
            "visibility": 10000,
            "wind_speed": 1.82,
            "wind_deg": 264,
            "wind_gust": 2.09,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616893200,
            "temp": 12.34,
            "feels_like": 10.78,
            "pressure": 1029,
            "humidity": 79,
            "dew_point": 8.69,
            "uvi": 0,
            "clouds": 27,
            "visibility": 10000,
            "wind_speed": 1.84,
            "wind_deg": 279,
            "wind_gust": 2.19,
            "weather": [
                {
                    "id": 802,
                    "main": "Clouds",
                    "description": "scattered clouds",
                    "icon": "03n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616896800,
            "temp": 12.21,
            "feels_like": 10.68,
            "pressure": 1029,
            "humidity": 79,
            "dew_point": 8.49,
            "uvi": 0,
            "clouds": 22,
            "visibility": 10000,
            "wind_speed": 1.76,
            "wind_deg": 288,
            "wind_gust": 2.05,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616900400,
            "temp": 12.1,
            "feels_like": 10.65,
            "pressure": 1029,
            "humidity": 79,
            "dew_point": 8.26,
            "uvi": 0,
            "clouds": 15,
            "visibility": 10000,
            "wind_speed": 1.61,
            "wind_deg": 298,
            "wind_gust": 1.82,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616904000,
            "temp": 12.02,
            "feels_like": 10.55,
            "pressure": 1029,
            "humidity": 77,
            "dew_point": 7.95,
            "uvi": 0,
            "clouds": 11,
            "visibility": 10000,
            "wind_speed": 1.47,
            "wind_deg": 308,
            "wind_gust": 1.59,
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616907600,
            "temp": 11.95,
            "feels_like": 10.63,
            "pressure": 1029,
            "humidity": 76,
            "dew_point": 7.72,
            "uvi": 0,
            "clouds": 9,
            "visibility": 10000,
            "wind_speed": 1.17,
            "wind_deg": 306,
            "wind_gust": 1.34,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616911200,
            "temp": 11.93,
            "feels_like": 10.62,
            "pressure": 1030,
            "humidity": 75,
            "dew_point": 7.52,
            "uvi": 0,
            "clouds": 8,
            "visibility": 10000,
            "wind_speed": 1.09,
            "wind_deg": 307,
            "wind_gust": 1.28,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616914800,
            "temp": 12.58,
            "feels_like": 11.43,
            "pressure": 1030,
            "humidity": 72,
            "dew_point": 7.41,
            "uvi": 0.42,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.87,
            "wind_deg": 313,
            "wind_gust": 1.11,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616918400,
            "temp": 13.55,
            "feels_like": 12.67,
            "pressure": 1030,
            "humidity": 67,
            "dew_point": 7.35,
            "uvi": 1.24,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.44,
            "wind_deg": 308,
            "wind_gust": 0.82,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616922000,
            "temp": 14.52,
            "feels_like": 13.71,
            "pressure": 1031,
            "humidity": 63,
            "dew_point": 7.22,
            "uvi": 2.48,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.34,
            "wind_deg": 162,
            "wind_gust": 0.71,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616925600,
            "temp": 15.34,
            "feels_like": 13.83,
            "pressure": 1031,
            "humidity": 59,
            "dew_point": 6.9,
            "uvi": 3.83,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.28,
            "wind_deg": 160,
            "wind_gust": 1.18,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616929200,
            "temp": 15.97,
            "feels_like": 14,
            "pressure": 1031,
            "humidity": 57,
            "dew_point": 6.79,
            "uvi": 4.83,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.96,
            "wind_deg": 163,
            "wind_gust": 1.7,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616932800,
            "temp": 16.36,
            "feels_like": 14.1,
            "pressure": 1031,
            "humidity": 56,
            "dew_point": 6.84,
            "uvi": 5.13,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.41,
            "wind_deg": 164,
            "wind_gust": 2.09,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616936400,
            "temp": 16.52,
            "feels_like": 14.1,
            "pressure": 1031,
            "humidity": 56,
            "dew_point": 7.04,
            "uvi": 4.71,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.7,
            "wind_deg": 159,
            "wind_gust": 2.26,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616940000,
            "temp": 16.45,
            "feels_like": 14.06,
            "pressure": 1030,
            "humidity": 57,
            "dew_point": 7.23,
            "uvi": 3.55,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.72,
            "wind_deg": 153,
            "wind_gust": 2.19,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616943600,
            "temp": 16.37,
            "feels_like": 13.89,
            "pressure": 1030,
            "humidity": 57,
            "dew_point": 7.4,
            "uvi": 2.16,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.82,
            "wind_deg": 153,
            "wind_gust": 2.47,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616947200,
            "temp": 16.2,
            "feels_like": 13.73,
            "pressure": 1030,
            "humidity": 58,
            "dew_point": 7.63,
            "uvi": 1.02,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.84,
            "wind_deg": 161,
            "wind_gust": 2.77,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616950800,
            "temp": 15.6,
            "feels_like": 13.1,
            "pressure": 1030,
            "humidity": 62,
            "dew_point": 8.04,
            "uvi": 0.3,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 3.03,
            "wind_deg": 177,
            "wind_gust": 3.28,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616954400,
            "temp": 14.84,
            "feels_like": 12.93,
            "pressure": 1031,
            "humidity": 66,
            "dew_point": 8.25,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.26,
            "wind_deg": 183,
            "wind_gust": 2.63,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616958000,
            "temp": 14.44,
            "feels_like": 13.39,
            "pressure": 1031,
            "humidity": 68,
            "dew_point": 8.38,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.05,
            "wind_deg": 182,
            "wind_gust": 1.36,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616961600,
            "temp": 14.21,
            "feels_like": 13.17,
            "pressure": 1032,
            "humidity": 69,
            "dew_point": 8.31,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.03,
            "wind_deg": 172,
            "wind_gust": 1.29,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616965200,
            "temp": 13.96,
            "feels_like": 13,
            "pressure": 1032,
            "humidity": 70,
            "dew_point": 8.37,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.91,
            "wind_deg": 177,
            "wind_gust": 1.16,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616968800,
            "temp": 13.73,
            "feels_like": 13.23,
            "pressure": 1032,
            "humidity": 72,
            "dew_point": 8.45,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.32,
            "wind_deg": 140,
            "wind_gust": 0.52,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616972400,
            "temp": 13.55,
            "feels_like": 12.92,
            "pressure": 1032,
            "humidity": 72,
            "dew_point": 8.38,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.45,
            "wind_deg": 44,
            "wind_gust": 0.52,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616976000,
            "temp": 13.37,
            "feels_like": 12.74,
            "pressure": 1032,
            "humidity": 72,
            "dew_point": 8.21,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.39,
            "wind_deg": 322,
            "wind_gust": 0.62,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616979600,
            "temp": 13.21,
            "feels_like": 12.43,
            "pressure": 1032,
            "humidity": 72,
            "dew_point": 7.99,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.54,
            "wind_deg": 333,
            "wind_gust": 0.73,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616983200,
            "temp": 13.04,
            "feels_like": 12.19,
            "pressure": 1031,
            "humidity": 71,
            "dew_point": 7.78,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.51,
            "wind_deg": 360,
            "wind_gust": 0.7,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616986800,
            "temp": 12.88,
            "feels_like": 11.99,
            "pressure": 1031,
            "humidity": 71,
            "dew_point": 7.55,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.52,
            "wind_deg": 53,
            "wind_gust": 0.86,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616990400,
            "temp": 12.72,
            "feels_like": 11.48,
            "pressure": 1031,
            "humidity": 71,
            "dew_point": 7.38,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 0.97,
            "wind_deg": 66,
            "wind_gust": 1.21,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616994000,
            "temp": 12.55,
            "feels_like": 10.82,
            "pressure": 1031,
            "humidity": 71,
            "dew_point": 7.22,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.62,
            "wind_deg": 55,
            "wind_gust": 1.76,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01n"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1616997600,
            "temp": 12.37,
            "feels_like": 10.41,
            "pressure": 1032,
            "humidity": 72,
            "dew_point": 7.22,
            "uvi": 0,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.95,
            "wind_deg": 55,
            "wind_gust": 2.09,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617001200,
            "temp": 12.99,
            "feels_like": 11.17,
            "pressure": 1032,
            "humidity": 70,
            "dew_point": 7.3,
            "uvi": 0.45,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 1.81,
            "wind_deg": 61,
            "wind_gust": 1.98,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617004800,
            "temp": 13.79,
            "feels_like": 11.42,
            "pressure": 1033,
            "humidity": 67,
            "dew_point": 7.54,
            "uvi": 1.36,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.64,
            "wind_deg": 67,
            "wind_gust": 2.8,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617008400,
            "temp": 14.48,
            "feels_like": 11.99,
            "pressure": 1033,
            "humidity": 65,
            "dew_point": 7.54,
            "uvi": 2.73,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.89,
            "wind_deg": 76,
            "wind_gust": 3.28,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617012000,
            "temp": 15.15,
            "feels_like": 12.71,
            "pressure": 1033,
            "humidity": 63,
            "dew_point": 7.46,
            "uvi": 4.14,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.88,
            "wind_deg": 88,
            "wind_gust": 3.39,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617015600,
            "temp": 15.67,
            "feels_like": 13.17,
            "pressure": 1033,
            "humidity": 61,
            "dew_point": 7.5,
            "uvi": 5.21,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.96,
            "wind_deg": 101,
            "wind_gust": 3.42,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617019200,
            "temp": 16.13,
            "feels_like": 13.51,
            "pressure": 1033,
            "humidity": 59,
            "dew_point": 7.4,
            "uvi": 5.54,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 3.11,
            "wind_deg": 106,
            "wind_gust": 3.47,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617022800,
            "temp": 16.36,
            "feels_like": 13.77,
            "pressure": 1032,
            "humidity": 57,
            "dew_point": 7.14,
            "uvi": 5.02,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.98,
            "wind_deg": 112,
            "wind_gust": 3.3,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617026400,
            "temp": 16.45,
            "feels_like": 13.77,
            "pressure": 1031,
            "humidity": 56,
            "dew_point": 6.82,
            "uvi": 3.79,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 3.05,
            "wind_deg": 110,
            "wind_gust": 3.3,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617030000,
            "temp": 16.38,
            "feels_like": 13.58,
            "pressure": 1031,
            "humidity": 55,
            "dew_point": 6.65,
            "uvi": 2.31,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 3.11,
            "wind_deg": 110,
            "wind_gust": 3.37,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617033600,
            "temp": 16.12,
            "feels_like": 13.45,
            "pressure": 1031,
            "humidity": 56,
            "dew_point": 6.64,
            "uvi": 1.08,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.92,
            "wind_deg": 111,
            "wind_gust": 3.22,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        },
        {
            "dt": 1617037200,
            "temp": 15.61,
            "feels_like": 13.29,
            "pressure": 1031,
            "humidity": 58,
            "dew_point": 6.75,
            "uvi": 0.32,
            "clouds": 0,
            "visibility": 10000,
            "wind_speed": 2.44,
            "wind_deg": 109,
            "wind_gust": 2.78,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "pop": 0
        }
    ],
    "daily": [
        {
            "dt": 1616842800,
            "sunrise": 1616823760,
            "sunset": 1616868625,
            "temp": {
                "day": 14.54,
                "min": 12.75,
                "max": 15.15,
                "night": 12.75,
                "eve": 14.06,
                "morn": 13.2
            },
            "feels_like": {
                "day": 13.29,
                "night": 11.33,
                "eve": 11.84,
                "morn": 12.45
            },
            "pressure": 1028,
            "humidity": 68,
            "dew_point": 8.58,
            "wind_speed": 1.37,
            "wind_deg": 152,
            "weather": [
                {
                    "id": 804,
                    "main": "Clouds",
                    "description": "overcast clouds",
                    "icon": "04d"
                }
            ],
            "clouds": 95,
            "pop": 0.14,
            "uvi": 2.89
        },
        {
            "dt": 1616929200,
            "sunrise": 1616910058,
            "sunset": 1616955089,
            "temp": {
                "day": 15.97,
                "min": 11.93,
                "max": 16.52,
                "night": 13.96,
                "eve": 15.6,
                "morn": 11.95
            },
            "feels_like": {
                "day": 14,
                "night": 13,
                "eve": 13.1,
                "morn": 10.63
            },
            "pressure": 1031,
            "humidity": 57,
            "dew_point": 6.79,
            "wind_speed": 1.96,
            "wind_deg": 163,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "clouds": 0,
            "pop": 0,
            "uvi": 5.13
        },
        {
            "dt": 1617015600,
            "sunrise": 1616996356,
            "sunset": 1617041553,
            "temp": {
                "day": 15.67,
                "min": 12.37,
                "max": 16.45,
                "night": 14.11,
                "eve": 15.61,
                "morn": 12.55
            },
            "feels_like": {
                "day": 13.17,
                "night": 12.19,
                "eve": 13.29,
                "morn": 10.82
            },
            "pressure": 1033,
            "humidity": 61,
            "dew_point": 7.5,
            "wind_speed": 2.96,
            "wind_deg": 101,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "clouds": 0,
            "pop": 0,
            "uvi": 5.54
        },
        {
            "dt": 1617102000,
            "sunrise": 1617082654,
            "sunset": 1617128017,
            "temp": {
                "day": 16.24,
                "min": 12.51,
                "max": 16.59,
                "night": 14.24,
                "eve": 15.09,
                "morn": 12.61
            },
            "feels_like": {
                "day": 13.34,
                "night": 12.47,
                "eve": 12.8,
                "morn": 10.17
            },
            "pressure": 1031,
            "humidity": 51,
            "dew_point": 4.78,
            "wind_speed": 2.86,
            "wind_deg": 105,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "clouds": 0,
            "pop": 0,
            "uvi": 5.6
        },
        {
            "dt": 1617188400,
            "sunrise": 1617168953,
            "sunset": 1617214482,
            "temp": {
                "day": 17.06,
                "min": 12.66,
                "max": 17.06,
                "night": 14.58,
                "eve": 15.39,
                "morn": 12.66
            },
            "feels_like": {
                "day": 13.95,
                "night": 13.14,
                "eve": 13.23,
                "morn": 10.64
            },
            "pressure": 1024,
            "humidity": 44,
            "dew_point": 3.43,
            "wind_speed": 2.76,
            "wind_deg": 166,
            "weather": [
                {
                    "id": 800,
                    "main": "Clear",
                    "description": "clear sky",
                    "icon": "01d"
                }
            ],
            "clouds": 1,
            "pop": 0,
            "uvi": 5.52
        },
        {
            "dt": 1617274800,
            "sunrise": 1617255252,
            "sunset": 1617300946,
            "temp": {
                "day": 17.02,
                "min": 13.58,
                "max": 17.16,
                "night": 15.53,
                "eve": 16.34,
                "morn": 13.58
            },
            "feels_like": {
                "day": 14.12,
                "night": 12.18,
                "eve": 13.19,
                "morn": 11.82
            },
            "pressure": 1016,
            "humidity": 54,
            "dew_point": 6.39,
            "wind_speed": 3.35,
            "wind_deg": 88,
            "weather": [
                {
                    "id": 804,
                    "main": "Clouds",
                    "description": "overcast clouds",
                    "icon": "04d"
                }
            ],
            "clouds": 100,
            "pop": 0,
            "uvi": 4.94
        },
        {
            "dt": 1617361200,
            "sunrise": 1617341551,
            "sunset": 1617387410,
            "temp": {
                "day": 19.1,
                "min": 14.01,
                "max": 19.1,
                "night": 15.28,
                "eve": 16.02,
                "morn": 14.01
            },
            "feels_like": {
                "day": 14.73,
                "night": 14.66,
                "eve": 15.53,
                "morn": 10.35
            },
            "pressure": 1006,
            "humidity": 54,
            "dew_point": 7.99,
            "wind_speed": 6.14,
            "wind_deg": 100,
            "weather": [
                {
                    "id": 500,
                    "main": "Rain",
                    "description": "light rain",
                    "icon": "10d"
                }
            ],
            "clouds": 10,
            "pop": 0.74,
            "rain": 1.89,
            "uvi": 5
        },
        {
            "dt": 1617447600,
            "sunrise": 1617427850,
            "sunset": 1617473874,
            "temp": {
                "day": 17.7,
                "min": 12.93,
                "max": 17.7,
                "night": 12.93,
                "eve": 13.7,
                "morn": 14.07
            },
            "feels_like": {
                "day": 15.53,
                "night": 7.33,
                "eve": 7.17,
                "morn": 12.59
            },
            "pressure": 1007,
            "humidity": 59,
            "dew_point": 9.03,
            "wind_speed": 3,
            "wind_deg": 185,
            "weather": [
                {
                    "id": 500,
                    "main": "Rain",
                    "description": "light rain",
                    "icon": "10d"
                }
            ],
            "clouds": 40,
            "pop": 0.37,
            "rain": 1.1,
            "uvi": 5
        }
    ]
}

Clone this wiki locally