Public Holidays in Vaud, Switzerland 2023
10 total holidays4 national6 regional
2023 Holiday Calendar — Vaud
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2023-01-01 | New Year's Day | Sunday | National |
| 2023-01-02 | Berchtold's Day | Monday | Vaud |
| 2023-04-07 | Good Friday | Friday | Vaud |
| 2023-04-10 | Easter Monday | Monday | Vaud |
| 2023-05-18 | Ascension Day | Thursday | National |
| 2023-05-29 | Whit Monday | Monday | Vaud |
| 2023-08-01 | National Day | Tuesday | National |
| 2023-09-18 | Federal Day of Thanksgiving, Repentance and Prayer | Monday | Vaud |
| 2023-09-25 | Nicholas of Flüe | Monday | Vaud |
| 2023-12-25 | Christmas Day | Monday | National |
Automate Vaud 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=2023" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Vaud
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=CH&year=2023",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Vaud (ISO code: VD)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("VD")
);