Public Holidays in Basel-Stadt, Switzerland 2021
9 total holidays4 national5 regional
2021 Holiday Calendar — Basel-Stadt
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2021-01-01 | New Year's Day | Friday | National |
| 2021-04-02 | Good Friday | Friday | Basel-Stadt |
| 2021-04-05 | Easter Monday | Monday | Basel-Stadt |
| 2021-05-01 | Labour Day | Saturday | Basel-Stadt |
| 2021-05-13 | Ascension Day | Thursday | National |
| 2021-05-24 | Whit Monday | Monday | Basel-Stadt |
| 2021-08-01 | National Day | Sunday | National |
| 2021-12-25 | Christmas Day | Saturday | National |
| 2021-12-26 | St Stephen's Day | Sunday | Basel-Stadt |
Automate Basel-Stadt 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 Basel-Stadt
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 Basel-Stadt (ISO code: BS)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("BS")
);