Your agent can't reliably compute sun and moon times; this returns exact sunrise, sunset, twilight, and moon phase for any spot and date.
Sunrise, sunset, solar noon, twilight, and day length for any location and date, plus the moon phase and illumination. Computed locally from astronomical formulae, so it works for any coordinates without an external service.
Date (YYYY-MM-DD). Defaults to today.
curl -X POST "https://skill.askfaro.com/skills/astronomy/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What phase is the moon today?"
}
}'askfaro describe astronomy/astronomy.moon
Install pip install askfaro-cli, then askfaro auth login.
Date (YYYY-MM-DD). Defaults to today.
Latitude in decimal degrees.
Optional IANA time zone for the output (e.g. America/New_York). Defaults to UTC.
Longitude in decimal degrees.
curl -X POST "https://skill.askfaro.com/skills/astronomy/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What time is sunset in New York on 2026-06-21?"
}
}'askfaro describe astronomy/astronomy.sun
Install pip install askfaro-cli, then askfaro auth login.