Check International Team Holidays
Look up public holidays across multiple countries to coordinate schedules for distributed teams.
Holidays for any country
Public holiday data for 100+ countries. Look up all holidays in a year, check if a date is a holiday, or find the next upcoming holiday. Useful for scheduling automation, calendar integrations, and holiday-aware workflows.
Get all public holidays for a country and year. Returns holiday names, dates, types, and whether they are fixed or variable dates. Supports 100+ countries by ISO 3166-1 alpha-2 code.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "public-holidays",
"skill": "holidays",
"input": {
"country": "US",
"year": 2026
}
}' \
https://api.toolrouter.com/v1/tools/callCheck if a specific date is a public holiday in a given country. Returns the holiday details if it is, or confirms it is a regular day.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "public-holidays",
"skill": "is_holiday",
"input": {
"date": "2026-12-25",
"country": "US"
}
}' \
https://api.toolrouter.com/v1/tools/callFind the next upcoming public holiday for a country from today or from a specified date. Useful for scheduling and planning around holidays.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "public-holidays",
"skill": "next_holiday",
"input": {
"country": "US"
}
}' \
https://api.toolrouter.com/v1/tools/callList all countries supported by the public holidays API with their ISO codes and names.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "public-holidays",
"skill": "supported_countries",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"public-holidays","skill":"holidays","input":{}}' \
https://api.toolrouter.com/v1/tools/callLook up public holidays across multiple countries to coordinate schedules for distributed teams.
Build a content calendar that aligns with public holidays to maximize engagement and relevance.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Coordinate distributed teams across timezones, holidays, and languages with one unified workflow.
Run informed standups with timezone awareness, holiday flags, and weather disruption alerts.
Yes. Use `holidays` with an ISO 3166-1 alpha-2 country code like `US` or `GB`, plus the year you want.
Use `is_holiday` with the country code and date. It tells you whether the day is a public holiday and returns the holiday details if it is.
Use `next_holiday` from today or from any date you care about. It is the fastest way to plan around the next break in a market.
Call `supported_countries` first. It returns the supported countries with their ISO codes so you can pick the right one quickly.