← apiaday.com

🗓️ API of the Day: Open-Meteo

Category: Weather · Cost: Free · no credit card

💡 Use case

Drop a five-line weather readout on any side project — current temp and wind for any coordinates.

🛠️ Quick start

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);

    

🎁 Daily takeaway

Bundle current=temperature_2m,wind_speed_10m and forecast_days=1 in one GET — no API key, no signup.