Logo
developer platform
Docs
API
Pricing
Showcase
API Overview
Geocoding
Geocoding
Geocoding NearbyGeocoding Search
Weather
Weather Core
ForecastRadarClimateWarnings
Weather Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Weather Ensemble
Ensemble ModelsEnsemble Point Forecast
Marine
Marine Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Marine Ensemble
Ensemble ModelsEnsemble Point Forecast
Marine Ports
Port ListPort Info
Mobility (The Netherlands)
Mobility Traffic
Traffic OverviewTraffic Geo
Mobility Transit
Transit Planner SearchTransit Planner MixerTransit Stops NearbyTransit Stop Departures

Forecast

GET
https://api.infoplaza.com/v1/weather/forecast

Description

The Weather Forecast API provides comprehensive weather data for locations globally:

  • Current Weather Data: Immediate insights into the current weather conditions.

  • 2-Hour Minutely Precipitation Forecast: Minute-by-minute precipitation data for precise forecasting of rainfall and snowfall. (default: 60 minutes)

  • 7-Day Hourly Forecast: Detailed hourly weather predictions for the upcoming week. (default: 48 hours)

  • 7-Day Daypartly Forecast: Detailed daypartly weather predictions for the upcoming week. (default: 8 dayparts)

  • 15-Day Daily Forecast: Extended daily weather forecasts for the next 15 days. (default: 5 days)

With the default values (or fewer), the forecast costs 1 credit. For longer periods, it costs 3 credits.

Parameters

ParameterTypeRequiredDefaultDescription
latnumberRequired-The latitude of the location
lonnumberRequired-The longitude of the location
unitsstringOptionalmetricThe units of the temperature
max_minutelynumberOptional60Minutely forecast, max minutes (0-120)
max_hourlynumberOptional48Hourly forecast, max hours (0-168)
max_dailynumberOptional5Daily forecast, max days (0-15)
max_daypartlynumberOptional8Daypartly forecast, max dayparts (0-30)
languagestringOptionalenLanguage of the results, available values: nl, en, de, fr, es, it

Response

PropertyTypeDescription
daily
arrayDaily weather forecasts for up to 15 days (default 5 days)
└─icon
stringShort icon code representing the day's weather
└─time
integerStart time of the day in Unix timestamp
└─uvIndex
integerMaximum UV index during the day

Example Request

curl "https://api.infoplaza.com/v1/weather/forecast
     ?lat=52.02 
     &lon=5.16 
     &api_key=$INFOPLAZA_API_KEY"

Example Response

{
  "daily": [
    {
      "icon": "B",
      "time": 1783375200,
      "uvIndex": 6,
      "dewPoint": 15.24,
      "humidity": 0.69,
      "pressure": 1014,
      "windSpeed": 7,
      "cloudCover": 0.93,
      "precipType": "rain",
      "windBearing": 288,
      "iconExtended": "A007D",
      "temperatureLow": 17,
      "precipIntensity": 0,
      "temperatureHigh": 26,
      "precipProbability": 0.05,
      "globalRadiationSum": 6613,
      "apparentTemperature": 26
    },
    {
      "icon": "B",
      "time": 1783461600,
      "uvIndex": 3,
      "dewPoint": 15.8,
      "humidity": 0.77,
      "pressure": 1018.4,
      "windSpeed": 4,
      "cloudCover": 0.72,
      "precipType": "rain",
      "windBearing": 312,
      "iconExtended": "A003D",
      "temperatureLow": 16,
      "precipIntensity": 0,
      "temperatureHigh": 24,
      "precipProbability": 0.05,
      "globalRadiationSum": 4097,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783548000,
      "uvIndex": 4,
      "dewPoint": 15.93,
      "humidity": 0.76,
      "pressure": 1018.7,
      "windSpeed": 4,
      "cloudCover": 0.39,
      "precipType": "rain",
      "windBearing": 22,
      "iconExtended": "A002D",
      "temperatureLow": 15,
      "precipIntensity": 0,
      "temperatureHigh": 26,
      "precipProbability": 0,
      "globalRadiationSum": 6373,
      "apparentTemperature": 27
    },
    {
      "icon": "B",
      "time": 1783634400,
      "uvIndex": 6,
      "dewPoint": 16.03,
      "humidity": 0.71,
      "pressure": 1018,
      "windSpeed": 4,
      "cloudCover": 0.57,
      "precipType": "rain",
      "windBearing": 36,
      "iconExtended": "A006D",
      "temperatureLow": 15,
      "precipIntensity": 0,
      "temperatureHigh": 28,
      "precipProbability": 0.05,
      "globalRadiationSum": 6967,
      "apparentTemperature": 28
    },
    {
      "icon": "A",
      "time": 1783720800,
      "uvIndex": 6,
      "dewPoint": 15.88,
      "humidity": 0.67,
      "pressure": 1020.7,
      "windSpeed": 5,
      "cloudCover": 0.12,
      "precipType": "rain",
      "windBearing": 37,
      "iconExtended": "A001D",
      "temperatureLow": 15,
      "precipIntensity": 0,
      "temperatureHigh": 29,
      "precipProbability": 0,
      "globalRadiationSum": 7602,
      "apparentTemperature": 29
    }
  ],
  "hourly": [
    {
      "icon": "B",
      "time": 1783418400,
      "uvIndex": 3.95,
      "dewPoint": 14,
      "humidity": 0.48,
      "pressure": 1012.9,
      "windGust": 10.1,
      "windSpeed": 5.5,
      "cloudCover": 0.96,
      "precipType": "rain",
      "visibility": 24363,
      "temperature": 26,
      "windBearing": 270,
      "iconExtended": "A006D",
      "globalRadiation": 252,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 26
    },
    {
      "icon": "B",
      "time": 1783422000,
      "uvIndex": 4.51,
      "dewPoint": 14,
      "humidity": 0.48,
      "pressure": 1013.2,
      "windGust": 11.9,
      "windSpeed": 6.7,
      "cloudCover": 0.98,
      "precipType": "rain",
      "visibility": 23784,
      "temperature": 26,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 280,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 26
    },
    {
      "icon": "B",
      "time": 1783425600,
      "uvIndex": 6.42,
      "dewPoint": 15,
      "humidity": 0.53,
      "pressure": 1013.8,
      "windGust": 12.8,
      "windSpeed": 7.2,
      "cloudCover": 0.99,
      "precipType": "rain",
      "visibility": 22904,
      "temperature": 25,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 288,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 26
    },
    {
      "icon": "B",
      "time": 1783429200,
      "uvIndex": 6.44,
      "dewPoint": 15,
      "humidity": 0.56,
      "pressure": 1014.1,
      "windGust": 13.1,
      "windSpeed": 7.2,
      "cloudCover": 0.99,
      "precipType": "rain",
      "visibility": 21713,
      "temperature": 24,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 272,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783432800,
      "uvIndex": 5.94,
      "dewPoint": 14,
      "humidity": 0.56,
      "pressure": 1014.5,
      "windGust": 12.8,
      "windSpeed": 7.1,
      "cloudCover": 0.67,
      "precipType": "rain",
      "visibility": 21419,
      "temperature": 24,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 249,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783436400,
      "uvIndex": 3.77,
      "dewPoint": 14,
      "humidity": 0.57,
      "pressure": 1014.7,
      "windGust": 12.2,
      "windSpeed": 6.6,
      "cloudCover": 0.51,
      "precipType": "rain",
      "visibility": 20865,
      "temperature": 23,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 219,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783440000,
      "uvIndex": 2.83,
      "dewPoint": 14,
      "humidity": 0.59,
      "pressure": 1014.8,
      "windGust": 11.8,
      "windSpeed": 5.9,
      "cloudCover": 0.69,
      "precipType": "rain",
      "visibility": 19225,
      "temperature": 23,
      "windBearing": 292.5,
      "iconExtended": "A006D",
      "globalRadiation": 171,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783443600,
      "uvIndex": 1.09,
      "dewPoint": 14,
      "humidity": 0.61,
      "pressure": 1015,
      "windGust": 10.6,
      "windSpeed": 5.3,
      "cloudCover": 0.92,
      "precipType": "rain",
      "visibility": 18376,
      "temperature": 22,
      "windBearing": 315,
      "iconExtended": "A007D",
      "globalRadiation": 115,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 24
    },
    {
      "icon": "B",
      "time": 1783447200,
      "uvIndex": 0.41,
      "dewPoint": 14,
      "humidity": 0.65,
      "pressure": 1015.3,
      "windGust": 9.5,
      "windSpeed": 4.3,
      "cloudCover": 0.94,
      "precipType": "rain",
      "visibility": 17348,
      "temperature": 21,
      "windBearing": 315,
      "iconExtended": "A007D",
      "globalRadiation": 69,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 24
    },
    {
      "icon": "C",
      "time": 1783450800,
      "uvIndex": 0.11,
      "dewPoint": 15,
      "humidity": 0.7,
      "pressure": 1015.6,
      "windGust": 7.7,
      "windSpeed": 3.6,
      "cloudCover": 1,
      "precipType": "rain",
      "visibility": 15646,
      "temperature": 20,
      "windBearing": 292.5,
      "iconExtended": "A004D",
      "globalRadiation": 29,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 20
    },
    {
      "icon": "CC",
      "time": 1783454400,
      "uvIndex": 0.01,
      "dewPoint": 15,
      "humidity": 0.75,
      "pressure": 1016,
      "windGust": 6.4,
      "windSpeed": 3.2,
      "cloudCover": 0.98,
      "precipType": "rain",
      "visibility": 14169,
      "temperature": 19,
      "windBearing": 292.5,
      "iconExtended": "A004N",
      "globalRadiation": 6,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 19
    },
    {
      "icon": "CC",
      "time": 1783458000,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.79,
      "pressure": 1016.2,
      "windGust": 5.7,
      "windSpeed": 2.9,
      "cloudCover": 0.97,
      "precipType": "rain",
      "visibility": 12975,
      "temperature": 19,
      "windBearing": 292.5,
      "iconExtended": "A005N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 19
    },
    {
      "icon": "BB",
      "time": 1783461600,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.82,
      "pressure": 1016.5,
      "windGust": 5.2,
      "windSpeed": 2.7,
      "cloudCover": 0.7,
      "precipType": "rain",
      "visibility": 11920,
      "temperature": 18,
      "windBearing": 315,
      "iconExtended": "A003N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 18
    },
    {
      "icon": "CC",
      "time": 1783465200,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.85,
      "pressure": 1016.5,
      "windGust": 4.8,
      "windSpeed": 2.4,
      "cloudCover": 0.94,
      "precipType": "rain",
      "visibility": 10914,
      "temperature": 17,
      "windBearing": 292.5,
      "iconExtended": "A005N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 17
    },
    {
      "icon": "CC",
      "time": 1783468800,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.87,
      "pressure": 1016.7,
      "windGust": 4.2,
      "windSpeed": 2.2,
      "cloudCover": 0.93,
      "precipType": "rain",
      "visibility": 10080,
      "temperature": 17,
      "windBearing": 292.5,
      "iconExtended": "A005N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 17
    },
    {
      "icon": "CC",
      "time": 1783472400,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.9,
      "pressure": 1017,
      "windGust": 4.1,
      "windSpeed": 2.1,
      "cloudCover": 0.91,
      "precipType": "rain",
      "visibility": 9476,
      "temperature": 16,
      "windBearing": 292.5,
      "iconExtended": "A005N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 16
    },
    {
      "icon": "CC",
      "time": 1783476000,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.92,
      "pressure": 1017.1,
      "windGust": 3.8,
      "windSpeed": 2,
      "cloudCover": 0.9,
      "precipType": "rain",
      "visibility": 8892,
      "temperature": 16,
      "windBearing": 292.5,
      "iconExtended": "A005N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 16
    },
    {
      "icon": "CC",
      "time": 1783479600,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.93,
      "pressure": 1017.4,
      "windGust": 3.6,
      "windSpeed": 1.9,
      "cloudCover": 0.78,
      "precipType": "rain",
      "visibility": 8706,
      "temperature": 16,
      "windBearing": 315,
      "iconExtended": "A004N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 16
    },
    {
      "icon": "B",
      "time": 1783483200,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.93,
      "pressure": 1017.6,
      "windGust": 3.5,
      "windSpeed": 1.8,
      "cloudCover": 0.67,
      "precipType": "rain",
      "visibility": 8982,
      "temperature": 16,
      "windBearing": 292.5,
      "iconExtended": "A003D",
      "globalRadiation": 1,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 16
    },
    {
      "icon": "B",
      "time": 1783486800,
      "uvIndex": 0.02,
      "dewPoint": 15,
      "humidity": 0.9,
      "pressure": 1017.8,
      "windGust": 3.8,
      "windSpeed": 2,
      "cloudCover": 0.66,
      "precipType": "rain",
      "visibility": 9778,
      "temperature": 17,
      "windBearing": 292.5,
      "iconExtended": "A003D",
      "globalRadiation": 16,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 17
    },
    {
      "icon": "B",
      "time": 1783490400,
      "uvIndex": 0.17,
      "dewPoint": 16,
      "humidity": 0.84,
      "pressure": 1018.3,
      "windGust": 5,
      "windSpeed": 2.6,
      "cloudCover": 0.74,
      "precipType": "rain",
      "visibility": 10980,
      "temperature": 18,
      "windBearing": 292.5,
      "iconExtended": "A003D",
      "globalRadiation": 42,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 18
    },
    {
      "icon": "C",
      "time": 1783494000,
      "uvIndex": 0.43,
      "dewPoint": 16,
      "humidity": 0.79,
      "pressure": 1018.7,
      "windGust": 5.7,
      "windSpeed": 2.9,
      "cloudCover": 0.96,
      "precipType": "rain",
      "visibility": 12063,
      "temperature": 19,
      "windBearing": 315,
      "iconExtended": "A004D",
      "globalRadiation": 70,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 19
    },
    {
      "icon": "C",
      "time": 1783497600,
      "uvIndex": 1.14,
      "dewPoint": 16,
      "humidity": 0.74,
      "pressure": 1018.9,
      "windGust": 6.4,
      "windSpeed": 3.4,
      "cloudCover": 0.94,
      "precipType": "rain",
      "visibility": 13833,
      "temperature": 20,
      "windBearing": 315,
      "iconExtended": "A004D",
      "globalRadiation": 92,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 20
    },
    {
      "icon": "C",
      "time": 1783501200,
      "uvIndex": 1.53,
      "dewPoint": 16,
      "humidity": 0.72,
      "pressure": 1019.1,
      "windGust": 7,
      "windSpeed": 3.8,
      "cloudCover": 0.98,
      "precipType": "rain",
      "visibility": 14940,
      "temperature": 21,
      "windBearing": 315,
      "iconExtended": "A005D",
      "globalRadiation": 91,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 21
    },
    {
      "icon": "C",
      "time": 1783504800,
      "uvIndex": 1.04,
      "dewPoint": 16,
      "humidity": 0.7,
      "pressure": 1019.2,
      "windGust": 7.4,
      "windSpeed": 3.9,
      "cloudCover": 0.97,
      "precipType": "rain",
      "visibility": 16089,
      "temperature": 21,
      "windBearing": 315,
      "iconExtended": "A005D",
      "globalRadiation": 100,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 23
    },
    {
      "icon": "C",
      "time": 1783508400,
      "uvIndex": 1.38,
      "dewPoint": 16,
      "humidity": 0.67,
      "pressure": 1019.2,
      "windGust": 7.7,
      "windSpeed": 4.1,
      "cloudCover": 0.95,
      "precipType": "rain",
      "visibility": 17426,
      "temperature": 22,
      "windBearing": 315,
      "iconExtended": "A005D",
      "globalRadiation": 135,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 24
    },
    {
      "icon": "C",
      "time": 1783512000,
      "uvIndex": 2.6,
      "dewPoint": 16,
      "humidity": 0.65,
      "pressure": 1019.1,
      "windGust": 8,
      "windSpeed": 4.1,
      "cloudCover": 0.92,
      "precipType": "rain",
      "visibility": 18680,
      "temperature": 23,
      "windBearing": 315,
      "iconExtended": "A004D",
      "globalRadiation": 149,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 24
    },
    {
      "icon": "C",
      "time": 1783515600,
      "uvIndex": 2.32,
      "dewPoint": 16,
      "humidity": 0.63,
      "pressure": 1019.1,
      "windGust": 8.4,
      "windSpeed": 4.5,
      "cloudCover": 0.96,
      "precipType": "rain",
      "visibility": 19288,
      "temperature": 23,
      "windBearing": 315,
      "iconExtended": "A005D",
      "globalRadiation": 151,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "C",
      "time": 1783519200,
      "uvIndex": 1.93,
      "dewPoint": 16,
      "humidity": 0.62,
      "pressure": 1019.1,
      "windGust": 8.3,
      "windSpeed": 4.2,
      "cloudCover": 0.89,
      "precipType": "rain",
      "visibility": 19548,
      "temperature": 24,
      "windBearing": 315,
      "iconExtended": "A004D",
      "globalRadiation": 141,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783522800,
      "uvIndex": 1.71,
      "dewPoint": 16,
      "humidity": 0.61,
      "pressure": 1019,
      "windGust": 8.1,
      "windSpeed": 4.3,
      "cloudCover": 0.88,
      "precipType": "rain",
      "visibility": 19678,
      "temperature": 24,
      "windBearing": 315,
      "iconExtended": "A003D",
      "globalRadiation": 151,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783526400,
      "uvIndex": 1.66,
      "dewPoint": 16,
      "humidity": 0.62,
      "pressure": 1018.8,
      "windGust": 7.9,
      "windSpeed": 4,
      "cloudCover": 0.76,
      "precipType": "rain",
      "visibility": 18969,
      "temperature": 24,
      "windBearing": 315,
      "iconExtended": "A003D",
      "globalRadiation": 137,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783530000,
      "uvIndex": 1.2,
      "dewPoint": 16,
      "humidity": 0.63,
      "pressure": 1018.7,
      "windGust": 7.1,
      "windSpeed": 3.7,
      "cloudCover": 0.45,
      "precipType": "rain",
      "visibility": 18460,
      "temperature": 24,
      "windBearing": 315,
      "iconExtended": "A002D",
      "globalRadiation": 118,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783533600,
      "uvIndex": 0.56,
      "dewPoint": 16,
      "humidity": 0.65,
      "pressure": 1018.7,
      "windGust": 6.3,
      "windSpeed": 3.1,
      "cloudCover": 0.26,
      "precipType": "rain",
      "visibility": 17303,
      "temperature": 23,
      "windBearing": 337.5,
      "iconExtended": "A002D",
      "globalRadiation": 86,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 25
    },
    {
      "icon": "B",
      "time": 1783537200,
      "uvIndex": 0.14,
      "dewPoint": 16,
      "humidity": 0.71,
      "pressure": 1018.8,
      "windGust": 5.4,
      "windSpeed": 2.5,
      "cloudCover": 0.2,
      "precipType": "rain",
      "visibility": 15107,
      "temperature": 22,
      "windBearing": 337.5,
      "iconExtended": "A002D",
      "globalRadiation": 43,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 23
    },
    {
      "icon": "BB",
      "time": 1783540800,
      "uvIndex": 0.03,
      "dewPoint": 16,
      "humidity": 0.8,
      "pressure": 1019.1,
      "windGust": 4.3,
      "windSpeed": 1.9,
      "cloudCover": 0.21,
      "precipType": "rain",
      "visibility": 12223,
      "temperature": 20,
      "windBearing": 337.5,
      "iconExtended": "A002N",
      "globalRadiation": 8,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 20
    },
    {
      "icon": "BB",
      "time": 1783544400,
      "uvIndex": 0,
      "dewPoint": 16,
      "humidity": 0.86,
      "pressure": 1019.2,
      "windGust": 3.2,
      "windSpeed": 1.6,
      "cloudCover": 0.24,
      "precipType": "rain",
      "visibility": 10353,
      "temperature": 18,
      "windBearing": 337.5,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 18
    },
    {
      "icon": "BB",
      "time": 1783548000,
      "uvIndex": 0,
      "dewPoint": 16,
      "humidity": 0.91,
      "pressure": 1019.3,
      "windGust": 2.5,
      "windSpeed": 1.4,
      "cloudCover": 0.26,
      "precipType": "rain",
      "visibility": 9220,
      "temperature": 17,
      "windBearing": 337.5,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 17
    },
    {
      "icon": "BB",
      "time": 1783551600,
      "uvIndex": 0,
      "dewPoint": 16,
      "humidity": 0.94,
      "pressure": 1019.2,
      "windGust": 2.2,
      "windSpeed": 1.1,
      "cloudCover": 0.21,
      "precipType": "rain",
      "visibility": 8530,
      "temperature": 17,
      "windBearing": 0,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 17
    },
    {
      "icon": "BB",
      "time": 1783555200,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.95,
      "pressure": 1019.2,
      "windGust": 1.8,
      "windSpeed": 1,
      "cloudCover": 0.25,
      "precipType": "rain",
      "visibility": 8192,
      "temperature": 16,
      "windBearing": 0,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 16
    },
    {
      "icon": "BB",
      "time": 1783558800,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.97,
      "pressure": 1019,
      "windGust": 1.5,
      "windSpeed": 0.8,
      "cloudCover": 0.28,
      "precipType": "rain",
      "visibility": 8166,
      "temperature": 16,
      "windBearing": 22.5,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 15
    },
    {
      "icon": "BB",
      "time": 1783562400,
      "uvIndex": 0,
      "dewPoint": 15,
      "humidity": 0.98,
      "pressure": 1019,
      "windGust": 1.4,
      "windSpeed": 0.8,
      "cloudCover": 0.31,
      "precipType": "rain",
      "visibility": 8145,
      "temperature": 15,
      "windBearing": 22.5,
      "iconExtended": "A002N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 15
    },
    {
      "icon": "BB",
      "time": 1783566000,
      "uvIndex": 0,
      "dewPoint": 14,
      "humidity": 0.98,
      "pressure": 1019.1,
      "windGust": 1.5,
      "windSpeed": 0.9,
      "cloudCover": 0.39,
      "precipType": "rain",
      "visibility": 4384,
      "temperature": 15,
      "windBearing": 22.5,
      "iconExtended": "A003N",
      "globalRadiation": 0,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 15
    },
    {
      "icon": "B",
      "time": 1783569600,
      "uvIndex": 0,
      "dewPoint": 14,
      "humidity": 0.98,
      "pressure": 1019.2,
      "windGust": 1.7,
      "windSpeed": 1,
      "cloudCover": 0.46,
      "precipType": "rain",
      "visibility": 1929,
      "temperature": 15,
      "windBearing": 0,
      "iconExtended": "A003D",
      "globalRadiation": 1,
      "precipIntensity": 0,
      "precipProbability": 0,
      "apparentTemperature": 15
    },
    {
      "icon": "B",
      "time": 1783573200,
      "uvIndex": 0.06,
      "dewPoint": 15,
      "humidity": 0.96,
      "pressure": 1019.2,
      "windGust": 2.2,
      "windSpeed": 1.1,
      "cloudCover": 0.6,
      "precipType": "rain",
      "visibility": 1092,
      "temperature": 16,
      "windBearing": 0,
      "iconExtended": "A003D",
      "globalRadiation": 19,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 16
    },
    {
      "icon": "B",
      "time": 1783576800,
      "uvIndex": 0.3,
      "dewPoint": 16,
      "humidity": 0.91,
      "pressure": 1019.4,
      "windGust": 2.9,
      "windSpeed": 1.2,
      "cloudCover": 0.65,
      "precipType": "rain",
      "visibility": 1593,
      "temperature": 17,
      "windBearing": 22.5,
      "iconExtended": "A003D",
      "globalRadiation": 51,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 17
    },
    {
      "icon": "B",
      "time": 1783580400,
      "uvIndex": 0.89,
      "dewPoint": 16,
      "humidity": 0.83,
      "pressure": 1019.5,
      "windGust": 3.5,
      "windSpeed": 1.5,
      "cloudCover": 0.72,
      "precipType": "rain",
      "visibility": 11678,
      "temperature": 19,
      "windBearing": 22.5,
      "iconExtended": "A003D",
      "globalRadiation": 88,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 19
    },
    {
      "icon": "B",
      "time": 1783584000,
      "uvIndex": 1.14,
      "dewPoint": 16,
      "humidity": 0.75,
      "pressure": 1019.7,
      "windGust": 4.1,
      "windSpeed": 1.8,
      "cloudCover": 0.67,
      "precipType": "rain",
      "visibility": 14245,
      "temperature": 20,
      "windBearing": 22.5,
      "iconExtended": "A003D",
      "globalRadiation": 122,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 20
    },
    {
      "icon": "B",
      "time": 1783587600,
      "uvIndex": 1.85,
      "dewPoint": 15,
      "humidity": 0.7,
      "pressure": 1019.5,
      "windGust": 4.4,
      "windSpeed": 1.9,
      "cloudCover": 0.63,
      "precipType": "rain",
      "visibility": 16259,
      "temperature": 21,
      "windBearing": 22.5,
      "iconExtended": "A003D",
      "globalRadiation": 173,
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "apparentTemperature": 23
    }
  ],
  "country": "Nederland",
  "latitude": 52.017,
  "location": "Leebrug",
  "minutely": [
    {
      "time": 1783424400,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783424700,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783425000,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783425300,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783425600,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783425900,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783426200,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783426500,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783426800,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783427100,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783427400,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    },
    {
      "time": 1783427700,
      "precipType": "rain",
      "precipIntensity": 0,
      "precipProbability": 0
    }
  ],
  "timezone": "Europe/Amsterdam",
  "currently": {
    "icon": "B",
    "time": 1783423800,
    "dewPoint": 13.7,
    "humidity": 0.52,
    "pressure": 1013.61,
    "windGust": 9.3,
    "windSpeed": 5,
    "cloudCover": 0.08,
    "visibility": 37500,
    "temperature": 24.1,
    "windBearing": 267.7,
    "precipIntensity": 0,
    "precipProbability": 0,
    "apparentTemperature": 24.1,
    "nearestStormBearing": 22,
    "nearestStormDistance": 788
  },
  "daypartly": [
    {
      "icon": "B",
      "name": "morning",
      "time": 1783375200,
      "uvIndex": 4,
      "windGust": 10,
      "windSpeed": 6,
      "cloudCover": 0.99,
      "precipType": "rain",
      "visibility": 23244,
      "temperature": 23,
      "windBearing": 271,
      "iconExtended": "A007D",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 2105
    },
    {
      "icon": "B",
      "name": "afternoon",
      "time": 1783375200,
      "uvIndex": 6,
      "windGust": 13,
      "windSpeed": 7,
      "cloudCover": 0.81,
      "precipType": "rain",
      "visibility": 22033,
      "temperature": 26,
      "windBearing": 288,
      "iconExtended": "A006D",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 4130
    },
    {
      "icon": "B",
      "name": "evening",
      "time": 1783375200,
      "uvIndex": 1,
      "windGust": 12,
      "windSpeed": 6,
      "cloudCover": 0.92,
      "precipType": "rain",
      "visibility": 15502,
      "temperature": 20,
      "windBearing": 303,
      "iconExtended": "A007D",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 558
    },
    {
      "icon": "CC",
      "name": "night",
      "time": 1783461600,
      "uvIndex": 0,
      "windGust": 5,
      "windSpeed": 3,
      "cloudCover": 0.86,
      "precipType": "rain",
      "visibility": 9704,
      "temperature": 16,
      "windBearing": 305,
      "iconExtended": "A005N",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 2
    },
    {
      "icon": "C",
      "name": "morning",
      "time": 1783461600,
      "uvIndex": 1,
      "windGust": 7,
      "windSpeed": 4,
      "cloudCover": 0.87,
      "precipType": "rain",
      "visibility": 12150,
      "temperature": 20,
      "windBearing": 305,
      "iconExtended": "A004D",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 1139
    },
    {
      "icon": "C",
      "name": "afternoon",
      "time": 1783461600,
      "uvIndex": 3,
      "windGust": 8,
      "windSpeed": 4,
      "cloudCover": 0.89,
      "precipType": "rain",
      "visibility": 18658,
      "temperature": 24,
      "windBearing": 312,
      "iconExtended": "A004D",
      "precipIntensity": 0,
      "precipProbability": 0.05,
      "globalRadiationSum": 2399
    },
    {
      "icon": "B",
      "name": "evening",
      "time": 1783461600,
      "uvIndex": 1,
      "windGust": 8,
      "windSpeed": 4,
      "cloudCover": 0.27,
      "precipType": "rain",
      "visibility": 14164,
      "temperature": 22,
      "windBearing": 320,
      "iconExtended": "A002D",
      "precipIntensity": 0,
      "precipProbability": 0,
      "globalRadiationSum": 649
    },
    {
      "icon": "BB",
      "name": "night",
      "time": 1783548000,
      "uvIndex": 0,
      "windGust": 2,
      "windSpeed": 1,
      "cloudCover": 0.32,
      "precipType": "rain",
      "visibility": 6643,
      "temperature": 15,
      "windBearing": 344,
      "iconExtended": "A002N",
      "precipIntensity": 0,
      "precipProbability": 0,
      "globalRadiationSum": 2
    }
  ],
  "longitude": 5.167
}
└─dewPoint
number
Average dew point temperature in °C
└─humidity
numberAverage relative humidity fraction
min: 0 max: 1
└─pressure
numberAverage atmospheric pressure in hPa
└─windSpeed
numberAverage wind speed in km/h
└─cloudCover
numberAverage cloud coverage fraction
min: 0 max: 1
└─precipType
stringType of precipitation expected during the day
└─windBearing
integerDominant wind direction in degrees
min: 0 max: 360
└─iconExtended
stringExtended icon code for detailed day weather
└─temperatureLow
numberLowest temperature of the day in °C
└─precipIntensity
numberAverage precipitation intensity (mm/hour)
└─temperatureHigh
numberHighest temperature of the day in °C
└─precipProbability
numberProbability of precipitation that day
min: 0 max: 1
└─globalRadiationSum
numberSum of solar radiation for the entire day (Wh/m²)
└─apparentTemperature
numberFeels-like temperature for the day
hourly
arrayHourly weather forecasts for up to 7 days (default 48 hours)
└─icon
stringShort code representing the weather icon
└─time
integerUnix timestamp for the forecast hour
└─uvIndex
numberUV index value
└─dewPoint
numberDew point temperature (°C)
└─humidity
numberRelative humidity (fraction)
min: 0 max: 1
└─pressure
numberAtmospheric pressure in hPa
└─windGust
numberWind gust speed in km/h
└─windSpeed
numberWind speed in km/h
└─cloudCover
numberCloud coverage fraction
min: 0 max: 1
└─precipType
stringType of precipitation expected
└─visibility
numberVisibility in meters
└─temperature
numberTemperature in degrees Celsius
└─windBearing
numberWind direction in degrees
min: 0 max: 360
└─iconExtended
stringExtended weather icon code
└─globalRadiation
numberSolar global radiation in W/m²
└─precipIntensity
numberPrecipitation intensity (mm/hour)
└─precipProbability
numberPrecipitation probability (0 to 1)
min: 0 max: 1
└─apparentTemperature
numberFeels-like temperature (wind chill/humidity)
country
stringCountry where the location is situated
latitude
numberGeographical latitude of the location in decimal degrees
location
stringName of the location
minutely
arrayMinute-by-minute precipitation forecast for the next 60 minutes
└─time
integerUnix timestamp for the data point
└─precipType
stringType of precipitation (e.g., rain, snow)
└─precipIntensity
numberPrecipitation intensity in mm/hour
└─precipProbability
numberProbability of precipitation (0 to 1)
min: 0 max: 1
timezone
stringIANA timezone name associated with the location
currently
objectCurrent weather conditions for the location
└─icon
stringShort code representing the current weather icon
└─time
integerUnix timestamp (seconds since epoch) of the current weather data
└─dewPoint
numberDew point temperature in degrees Celsius
└─humidity
numberRelative humidity as a fraction (0 to 1)
min: 0 max: 1
└─pressure
numberAtmospheric pressure in hPa
└─windGust
numberMaximum wind gust speed in km/h
└─windSpeed
numberWind speed in km/h
└─cloudCover
numberCloud cover fraction (0 to 1)
min: 0 max: 1
└─visibility
numberVisibility distance in meters
└─temperature
numberCurrent temperature in degrees Celsius
└─windBearing
numberDirection from which the wind is blowing in degrees (meteorological)
min: 0 max: 360
└─precipIntensity
numberPrecipitation intensity (mm/hour)
└─precipProbability
numberProbability of precipitation (0 to 1)
min: 0 max: 1
└─apparentTemperature
numberFeels-like temperature accounting for wind chill or humidity
└─nearestStormBearing
numberDirection to nearest storm in degrees
min: 0 max: 360
└─nearestStormDistance
numberDistance to nearest storm in kilometers
daypartly
arrayDaypartly weather forecast segments for up to 7 days (default 8 dayparts)
└─icon
stringShort weather icon code
└─name
stringName of the daypart (e.g., morning, afternoon, evening, night)
└─time
integerUnix timestamp representing the daypart start time
└─uvIndex
integerMaximum UV index
└─windGust
numberMaximum wind gust speed in km/h
└─windSpeed
numberAverage wind speed in km/h
└─cloudCover
numberCloud coverage fraction during the daypart
min: 0 max: 1
└─precipType
stringType of precipitation
└─visibility
numberAverage visibility during the daypart in meters
└─temperature
numberAverage temperature during the daypart in °C
└─windBearing
integerAverage wind direction degrees
min: 0 max: 360
└─iconExtended
stringExtended icon code for detailed weather representation
└─precipIntensity
numberAverage precipitation intensity during the daypart (mm/hour)
└─precipProbability
numberProbability of precipitation for the daypart
min: 0 max: 1
└─globalRadiationSum
numberSum of solar radiation for the daypart (e.g., Wh/m²)
longitude
numberGeographical longitude of the location in decimal degrees