Returns a hour-by-hour forecast covering roughly the next 48 hours, with temperature, precipitation probability, wind, and conditions at each hour. Use this when you need to know the weather at a specific time of day, such as for an outdoor event this evening or a morning commute tomorrow.
You want timing within the next day or two, e.g. what it will be like by 3pm or this evening.
A multi-day outlook (use the daily forecast), or whether rain starts in the next hour (use the nowcast).
0.1 credits / request
Set these inside the intent when you run it.
Place name (city, landmark) or latitude/longitude coordinates.
Temperature and wind units. Use metric for Celsius or imperial for Fahrenheit.
Language code for the condition text, e.g. en, it, nl.
Up to 48 hourly entries, each with temperature, precipitation probability, wind speed and direction, and a condition summary.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Weather skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/weather/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"forecast.hourly","location":"Berlin, Germany","units":"metric","language":"en"}}'Example requests