Switzerland flag

Public Holidays in Basel-Stadt, Switzerland 2023

9 total holidays4 national5 regional

2023 Holiday Calendar — Basel-Stadt

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-04-07Good FridayFridayBasel-Stadt
2023-04-10Easter MondayMondayBasel-Stadt
2023-05-01Labour DayMondayBasel-Stadt
2023-05-18Ascension DayThursdayNational
2023-05-29Whit MondayMondayBasel-Stadt
2023-08-01National DayTuesdayNational
2023-12-25Christmas DayMondayNational
2023-12-26St Stephen's DayTuesdayBasel-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=2023" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Basel-Stadt

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 Basel-Stadt (ISO code: BS)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("BS")
);
Public Holidays in Basel-Stadt, Switzerland 2023 — Complete List