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.
You want the weather right now, the current temperature, or whether it is raining at the moment.
A forecast for later or for the coming days (use a forecast operation).
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, es, ja.
Current temperature, feels-like, humidity, wind, cloud cover, UV index, and a condition summary for the location.
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