Skills/Weather/Current conditions

Current conditions

0.1 credits / request

Returns the live weather for any location: temperature, feels-like temperature, humidity, wind speed and direction, cloud cover, visibility, UV index, and a plain-English condition summary. Data is refreshed roughly every ten minutes, so you always get an up-to-date reading, not a guess.

Use when

You want the weather right now, the current temperature, or whether it is raining at the moment.

Not for

A forecast for later or for the coming days (use a forecast operation).

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, es, ja.

What you get back

Current temperature, feels-like, humidity, wind, cloud cover, UV index, and a condition summary for the location.

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":"current","location":"Tokyo, Japan","units":"metric","language":"en"}}'

Example requests

  • What's the weather in Tokyo right now?
  • Is it raining in London at the moment?
  • How hot is it in Dubai today?