| name | weather |
| description | Fetch weather forecasts using wttr.in |
| requires | {"bins":["curl"]} |
Weather Lookup
Quick Weather
curl -s "wttr.in/London?format=3"
curl -s "wttr.in/London"
curl -s "wttr.in/London?format=%l:+%c+%t+%w+%h"
Format Options
curl -s "wttr.in/Tokyo?format=%l:+%C+%t+(feels+%f)+wind+%w"
curl -s "wttr.in/Berlin?format=j1"
Location Formats
curl -s "wttr.in/Paris"
curl -s "wttr.in/JFK"
curl -s "wttr.in/48.8566,2.3522"
curl -s "wttr.in"
Tips
- Always use
-s (silent) to suppress curl's progress bar.
- Use
format=3 for the most concise output suitable for chat responses.
- For multi-day forecasts, the default output (no format parameter) shows 3 days.
- Add
?lang=XX for localized output (e.g., ?lang=de for German).