Your agent has no live weather; this returns current conditions and a multi-day forecast for any place.
Current conditions and multi-day forecasts by location, plus a place-name to coordinates lookup so a city name is enough to get the weather.
Current weather conditions for a coordinate (temperature, wind, humidity, conditions).
Latitude in decimal degrees.
Longitude in decimal degrees.
Language code for weather descriptions (e.g. "en").
Temperature and wind units. metric=Celsius, imperial=Fahrenheit.
curl -X POST "https://skill.askfaro.com/skills/weather/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What's the weather in Tokyo right now?"
}
}'askfaro describe weather/current
Install pip install askfaro-cli, then askfaro auth login.
Weather forecast for a coordinate at a chosen resolution (15-minute, hourly, or daily).
Latitude in decimal degrees.
Longitude in decimal degrees.
Language code for weather descriptions (e.g. "en").
Temperature and wind units. metric=Celsius, imperial=Fahrenheit.
Forecast resolution: 1day (multi-day), 1h (hourly), or 15min (next-hour precipitation).
curl -X POST "https://skill.askfaro.com/skills/weather/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Will it rain in London tomorrow?"
}
}'askfaro describe weather/forecast
Install pip install askfaro-cli, then askfaro auth login.
Resolve a city or place name into coordinates to feed the forecast tool.
Place name, optionally as "City,state,country" (state is US-only), e.g. "London,GB".
Number of candidate matches (1-5).
curl -X POST "https://skill.askfaro.com/skills/weather/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get coordinates for Paris, France"
}
}'askfaro describe weather/geocode
Install pip install askfaro-cli, then askfaro auth login.