Public Holidays in Basel-Stadt, Switzerland 2024
9 total holidays4 national5 regional
2024 Holiday Calendar — Basel-Stadt
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2024-01-01 | New Year's Day | Monday | National |
| 2024-03-29 | Good Friday | Friday | Basel-Stadt |
| 2024-04-01 | Easter Monday | Monday | Basel-Stadt |
| 2024-05-01 | Labour Day | Wednesday | Basel-Stadt |
| 2024-05-09 | Ascension Day | Thursday | National |
| 2024-05-20 | Whit Monday | Monday | Basel-Stadt |
| 2024-08-01 | National Day | Thursday | National |
| 2024-12-25 | Christmas Day | Wednesday | National |
| 2024-12-26 | St Stephen's Day | Thursday | 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=2024" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Basel-Stadt
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=CH&year=2024",
{ 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")
);