Public Holidays in Schwyz, Switzerland 2021
14 total holidays4 national10 regional
2021 Holiday Calendar — Schwyz
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2021-01-01 | New Year's Day | Friday | National |
| 2021-01-06 | Epiphany | Wednesday | Schwyz |
| 2021-03-19 | St Joseph's Day | Friday | Schwyz |
| 2021-04-02 | Good Friday | Friday | Schwyz |
| 2021-04-05 | Easter Monday | Monday | Schwyz |
| 2021-05-13 | Ascension Day | Thursday | National |
| 2021-05-24 | Whit Monday | Monday | Schwyz |
| 2021-06-03 | Corpus Christi | Thursday | Schwyz |
| 2021-08-01 | National Day | Sunday | National |
| 2021-08-15 | Assumption Day | Sunday | Schwyz |
| 2021-11-01 | All Saints' Day | Monday | Schwyz |
| 2021-12-08 | Immaculate Conception | Wednesday | Schwyz |
| 2021-12-25 | Christmas Day | Saturday | National |
| 2021-12-26 | St Stephen's Day | Sunday | Schwyz |
Automate Schwyz holiday data via API
One API call. Filter by region code. Integrate in minutes.
cURL
curl -X GET \ "https://api.holidays.rest/v1/holidays?country=CH&year=2021" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Schwyz
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=CH&year=2021",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Schwyz (ISO code: SZ)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("SZ")
);