Install
openclaw skills install weather-checkCurrent weather conditions and multi-day forecasts for any location worldwide.
openclaw skills install weather-checkGet current weather conditions and multi-day forecasts for any location by name or coordinates.
curl -X POST https://weather.agentutil.net/v1/current \
-H "Content-Type: application/json" \
-d '{"location": "London"}'
Or by coordinates: {"lat": 51.51, "lon": -0.13}
curl -X POST https://weather.agentutil.net/v1/forecast \
-H "Content-Type: application/json" \
-d '{"location": "Tokyo", "days": 7}'
Days: 1-16 (default 7).
{
"location": {"name": "London", "country": "GB", "latitude": 51.51, "longitude": -0.13},
"current": {
"temperature": {"celsius": 12.5, "fahrenheit": 54.5},
"humidity": 72,
"conditions": "Overcast",
"wind": {"speed_kmh": 15.2, "direction_degrees": 230}
},
"request_id": "abc-123",
"service": "https://weather.agentutil.net"
}
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.