Models get time-zone math and DST wrong; this returns the exact current time, offset, and conversions for any zone.
Current time, time-zone conversion, and UTC offset / DST facts for any IANA time zone. Answers "what time is it there", converts a time between zones, and reports the current offset and daylight-saving state. Computed locally from current IANA time-zone data.
ISO 8601 date-time to convert (e.g. 2026-06-06T14:30:00). Interpreted in from_timezone unless it carries a UTC offset.
Target IANA time-zone name (e.g. Europe/Berlin).
Source IANA time-zone name (e.g. America/New_York).
curl -X POST "https://skill.askfaro.com/skills/timezone/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Convert 2026-06-06 15:00 from America/New_York to Europe/Berlin"
}
}'askfaro describe timezone/timezone.convert
Install pip install askfaro-cli, then askfaro auth login.
Optional case-insensitive substring to filter zone names (e.g. Europe, Tokyo).
curl -X POST "https://skill.askfaro.com/skills/timezone/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "List time zones containing \"Makassar\""
}
}'askfaro describe timezone/timezone.list_timezones
Install pip install askfaro-cli, then askfaro auth login.
UTC offset, DST state, and abbreviation for an IANA time zone, now or on a given date.
Optional date (YYYY-MM-DD) to query the offset/DST state on. Defaults to now.
IANA time-zone name (e.g. America/New_York, Europe/London).
curl -X POST "https://skill.askfaro.com/skills/timezone/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What's the UTC offset for America/New_York on 2026-07-01?"
}
}'askfaro describe timezone/timezone.zone_info
Install pip install askfaro-cli, then askfaro auth login.
The current date and time in a given IANA time zone, with UTC offset and DST state.
IANA time-zone name (e.g. Asia/Makassar, Europe/London, America/New_York).
curl -X POST "https://skill.askfaro.com/skills/timezone/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What time is it in Tokyo right now?"
}
}'askfaro describe timezone/timezone.current_time
Install pip install askfaro-cli, then askfaro auth login.