Public Holidays in Zurich, Switzerland 2020
10 total holidays4 national6 regional
2020 Holiday Calendar — Zurich
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2020-01-01 | New Year's Day | Wednesday | National |
| 2020-01-02 | Berchtold's Day | Thursday | Zurich |
| 2020-04-10 | Good Friday | Friday | Zurich |
| 2020-04-13 | Easter Monday | Monday | Zurich |
| 2020-05-01 | Labour Day | Friday | Zurich |
| 2020-05-21 | Ascension Day | Thursday | National |
| 2020-06-01 | Whit Monday | Monday | Zurich |
| 2020-08-01 | National Day | Saturday | National |
| 2020-12-25 | Christmas Day | Friday | National |
| 2020-12-26 | St Stephen's Day | Saturday | Zurich |
Automate Zurich 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=2020" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Zurich
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=CH&year=2020",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Zurich (ISO code: ZH)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("ZH")
);