Back to catalog

Endpoint

Open-Meteo — current weather

Open-source weather API with global coverage. Tune latitude/longitude and parameters for hourly or daily data.

Free weather data, no API key

WeatherNo API keyDefault GET

HTTP console

Example URL
https://api.open-meteo.com/v1/forecast?latitude=40.7128&longitude=-74.0060&current_weather=trueProvider documentation
Request

Use GET. Required query params include latitude and longitude in decimal degrees.

GET /v1/forecast?latitude=…&longitude=…&current_weather=true
Response

{ latitude, longitude, current_weather: { temperature, windspeed, weathercode, … }, … }

{
  "latitude": 40.71,
  "longitude": -74.01,
  "current_weather": {
    "temperature": 12.3,
    "windspeed": 15.2,
    "weathercode": 2
  }
}
Outbound requestProxy

Executes on the server with rate limits and host rules. Edit the URL and payload to match your scenario—responses show real upstream status and body (truncated if very large).

Upstream response

Ready. Click Send to execute the request. Status, latency, content type, and body appear here—formatted when the payload is JSON.