Skills/Weather/Daily forecast

Daily forecast

0.1 credits / request

Returns a day-by-day weather outlook covering roughly the next eight days, with daily high and low temperatures, precipitation probability, wind, humidity, and a condition summary for each day. Best for planning trips, events, or any decision that depends on what the weather will be like over the coming days.

Use when

You want this week's weather, a several-day outlook, or to plan around upcoming conditions.

Not for

Conditions right now (use current), or hour-by-hour timing (use the hourly forecast).

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, fr, de.

What you get back

Up to eight days of daily forecasts, each with high/low temperature, precipitation probability, wind, humidity, 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.daily","location":"Sydney, Australia","units":"metric","language":"en"}}'

Example requests

  • What's the weather forecast for Paris this week?
  • Will it rain in Sydney over the next few days?
  • Should I pack a coat for my trip to Edinburgh next weekend?