Your agent guesses which days are holidays; this returns the real public-holiday calendar by country and year.
Public holidays by country and year: full-year lists, whether a date is a holiday, upcoming holidays, and the set of supported countries. Useful for scheduling, business-day math, and calendar logic.
Four-digit year. Defaults to the current year.
ISO 3166-1 alpha-2 country code (e.g. US, GB, DE).
Optional language code for localized holiday names (e.g. de, fr).
Optional ISO 3166-2 subdivision code for regional holidays (e.g. CA, TX, BY).
curl -X POST "https://skill.askfaro.com/skills/holidays/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What are the public holidays in the US in 2026?"
}
}'askfaro describe holidays/holidays.list
Install pip install askfaro-cli, then askfaro auth login.
Date to check, YYYY-MM-DD.
ISO 3166-1 alpha-2 country code (e.g. US, GB, DE).
Optional language code for the localized holiday name.
Optional ISO 3166-2 subdivision code (e.g. CA, NSW).
curl -X POST "https://skill.askfaro.com/skills/holidays/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Is 2026-07-04 a holiday in the US?"
}
}'askfaro describe holidays/holidays.is_holiday
Install pip install askfaro-cli, then askfaro auth login.
curl -X POST "https://skill.askfaro.com/skills/holidays/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Which countries have holiday data?"
}
}'askfaro describe holidays/holidays.countries
Install pip install askfaro-cli, then askfaro auth login.
How many upcoming holidays to return. Defaults to 5.
ISO 3166-1 alpha-2 country code (e.g. US, FR, GB).
Optional language code for localized holiday names.
Look ahead from this date, YYYY-MM-DD. Defaults to today.
Optional ISO 3166-2 subdivision code (e.g. CA, NSW).
curl -X POST "https://skill.askfaro.com/skills/holidays/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "When is the next public holiday in France?"
}
}'askfaro describe holidays/holidays.next
Install pip install askfaro-cli, then askfaro auth login.