Holiday List Generator
Compile gazetted, restricted, and institutional holidays into one printable list for parents and staff.
| Date | Occasion | Type |
|---|---|---|
| 26/01/2026 | Republic Day | Gazetted |
| 14/03/2026 | Holi | Gazetted |
| 15/08/2026 | Independence Day | Gazetted |
| 20/08/2026 | Founders Day | Institutional |
| 08/11/2026 | Diwali | Gazetted |
Total holidays listed: 5
How the holiday list generator works
Build the list
Add each holiday as Occasion|yyyy-mm-dd|Type (Gazetted / Restricted / Institutional). The list sorts by date for the circular.
Source
Institutional holiday circular format. Gazetted holiday names should follow the relevant Central/State government holiday notification for your location and year.
Frequently asked questions
Does this include national holidays automatically?
No — holidays change by state and year. Paste from the official notification for your state.
Can I separate staff-only holidays?
Use Type = Institutional or Restricted and note applicability in the occasion name.
Will it calculate working days left?
It counts holiday entries. Pair with the Academic Calendar Generator for term working-day checks.
Is the output a government-legal circular?
It is a formatting aid. Final circulars should be issued on letterhead under your principal’s authority.
For developers & AI agents
The Holiday List Generator is also available as a free, unauthenticated JSON API — no API key, no sign-up, CORS enabled for all origins. Send a GET request with the parameters below and receive the computed result as JSON, including the source of the format or formula used. Invalid input returns HTTP 400 with a JSON { "error": "..." } body.
GET https://knwdle.com/api/tools/holiday-list-generator| Parameter | Required | Description |
|---|---|---|
institution | No | Institution name |
yearLabel | Yes | Year label for the circular |
holidays | Yes | Semicolon-separated Occasion|yyyy-mm-dd|Type entries |
Request:
GET https://knwdle.com/api/tools/holiday-list-generator?institution=Knwdle+Public+School&yearLabel=2026&holidays=Republic+Day|2026-01-26|Gazetted;Holi|2026-03-14|Gazetted;Founders+Day|2026-08-20|Institutional
Response:
{
"tool": "holiday-list-generator",
"name": "Holiday List Generator",
"source": "Institutional holiday circular format. Gazetted holiday names should follow the relevant Central/State government holiday notification for your location and year.",
"institution": "Knwdle Public School",
"yearLabel": "2026",
"holidays": [
{
"occasion": "Republic Day",
"date": "2026-01-26",
"type": "Gazetted"
},
{
"occasion": "Holi",
"date": "2026-03-14",
"type": "Gazetted"
},
{
"occasion": "Founders Day",
"date": "2026-08-20",
"type": "Institutional"
}
],
"count": 3
}