OpenMeteo Get Weather Forecast
Get current weather and forecasts for any location using Open-Meteo (free, no API key needed). Returns current conditions and hourly/daily forecasts up to 16 days. Essential for weather-aware applications, research, and decision making. Supports 170+ weather variables including temperature, precipitation, wind, humidity, UV index, cloud cover, and more. Latitude/longitude required (use OpenMeteo_geocode_location to get coordinates from city names). Example: latitude=51.5, longitude=-0.12 for Lo…
Overview
Get current weather and forecasts for any location using Open-Meteo (free, no API key needed). Returns current conditions and hourly/daily forecasts up to 16 days. Essential for weather-aware applications, research, and decision making. Supports 170+ weather variables including temperature, precipitation, wind, humidity, UV index, cloud cover, and more. Latitude/longitude required (use OpenMeteo_geocode_location to get coordinates from city names). Example: latitude=51.5, longitude=-0.12 for London.
Status
The most recent probe succeeded. Safe to call from the agent today.
- Last probed
- 1d ago
- Last success
- 1d ago
- Last latency
- 570ms
Schema
JSON Schema the agent (or your API call) must match.
{
"properties": {
"current": {
"description": "Comma-separated current weather variables (e.g., 'temperature_2m,wind_speed_10m,precipitation,weather_code,relative_humidity_2m,surface_pressure')",
"type": [
"string",
"null"
]
},
"daily": {
"description": "Comma-separated daily forecast variables (e.g., 'temperature_2m_max,temperature_2m_min,precipitation_sum,wind_speed_10m_max,uv_index_max')",
"type": [
"string",
"null"
]
},
"forecast_days": {
"description": "Number of forecast days (1-16, default 7)",
"type": [
"integer",
"null"
]
},
"hourly": {
"description": "Comma-separated hourly variables (e.g., 'temperature_2m,precipitation_probability,wind_speed_10m,relative_humidity_2m')",
"type": [
"string",
"null"
]
},
"latitude": {
"description": "Latitude in decimal degrees (e.g., 51.5 for London, 40.7 for New York, 35.7 for Tokyo)",
"type": "number"
},
"longitude": {
"description": "Longitude in decimal degrees (e.g., -0.12 for London, -74.0 for New York, 139.7 for Tokyo)",
"type": "number"
},
"timezone": {
"description": "Timezone for local time (e.g., 'Europe/London', 'America/New_York', 'Asia/Tokyo', 'auto' to detect from location)",
"type": [
"string",
"null"
]
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}Examples (1)
Default OpenMeteo Get Weather Forecast call
{
"latitude": 1,
"longitude": 1
}Anonymous-safe example. Rate-limited; no sign-in required.
Identifiers
- Catalog ID
- tu_OpenMeteo_get_weather_forecast
- Tool name
- OpenMeteo_get_weather_forecast
- Added
- 2026-05-01 00:58Z
- Tags
- tooluniverse