they do forecasts for today or the upcoming hours.
for forecasts I use the free api of mesteoserver.nl, they give you a json respons with a forecast of 8 days for temp, rain, sun etc. quick example of two days:
{
"plaatsnaam": [
{
"plaats": "Wezep"
}
],
"data": [
{
"dag": "10-07-2024",
"avg_temp": "20",
"min_temp": "16",
"max_temp": "23",
"windr": "238",
"windrltr": "ZW",
"winds": "5",
"windb": "3",
"windkmh": "18",
"windknp": "10",
"tot_neersl": "3.2",
"neersl_perc_dag": "80",
"tot_zond": "576",
"zond_perc_dag": "80",
"sup": "05:24",
"sunder": "21:58",
"toestand": "regen"
},
{
"dag": "11-07-2024",
"avg_temp": "17",
"min_temp": "13",
"max_temp": "21",
"windr": "255",
"windrltr": "ZW",
"winds": "4",
"windb": "3",
"windkmh": "14.4",
"windknp": "8",
"tot_neersl": "0",
"neersl_perc_dag": "0",
"tot_zond": "583",
"zond_perc_dag": "81",
"sup": "05:25",
"sunder": "21:57",
"toestand": "halfbewolkt"
},
{
"dag": "12-07-2024",
"avg_temp": "16",
"min_temp": "11",
"max_temp": "21",
"windr": "236",
"windrltr": "ZW",
"winds": "4",
"windb": "3",
"windkmh": "14.4",
"windknp": "8",
"tot_neersl": "0",
"neersl_perc_dag": "0",
"tot_zond": "504",
"zond_perc_dag": "70",
"sup": "05:26",
"sunder": "21:56",
"toestand": "halfbewolkt"
},