Drop a five-line weather readout on any side project — current temp and wind for any coordinates.
const url = 'https://api.open-meteo.com/v1/forecast?latitude=-11.25&longitude=-85.87¤t=temperature_2m,wind_speed_10m&forecast_days=1'; const res = await fetch(url); const data = await res.json(); console.log(data.current);
Bundle current=temperature_2m,wind_speed_10m and forecast_days=1 in one GET — no API key, no signup.