Holiday Calendar
holiday_calendarList the public holidays the engine uses for a country and year. FREE.
Typical input {"country": "IE", "year": 2026} returns {"holidays":
[{"date": "2026-01-01", "name": "New Year's Day"}, ...]}. Use when
checking why a business-day or bank-holiday adjustment landed where it
did, or to see whether a country/subdivision is supported. Not a legal
register of bank holidays: it is the holidays package's public-holiday
calendar, which is what compute_deadlines uses. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "country is required"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | calendar year. | |
| subdiv | No | optional subdivision code (state, province, region). | |
| country | Yes | ISO 3166-1 alpha-2 code (DE, FR, IE, US, ...). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||