Skills/Weather/Hourly forecast

Hourly forecast

0.1 credits / request

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.

Use when

You want timing within the next day or two, e.g. what it will be like by 3pm or this evening.

Not for

A multi-day outlook (use the daily forecast), or whether rain starts in the next hour (use the nowcast).

Cost

0.1 credits / request

What it accepts

Set these inside the intent when you run it.

locationrequired

Place name (city, landmark) or latitude/longitude coordinates.

unitsoptional

Temperature and wind units. Use metric for Celsius or imperial for Fahrenheit.

languageoptional

Language code for the condition text, e.g. en, it, nl.

What you get back

Up to 48 hourly entries, each with temperature, precipitation probability, wind speed and direction, and a condition summary.

Run it

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

  • What will the weather be like in Rome at 3pm today?
  • Hour by hour forecast for Berlin tomorrow
  • Will it be warm enough to go out this evening in Amsterdam?