Switzerland flag

Public Holidays in Solothurn, Switzerland 2023

15 total holidays4 national11 regional

2023 Holiday Calendar — Solothurn

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-01-02Berchtold's DayMondaySolothurn
2023-03-19St Joseph's DaySundaySolothurn
2023-04-07Good FridayFridaySolothurn
2023-04-10Easter MondayMondaySolothurn
2023-05-01Labour DayMondaySolothurn
2023-05-18Ascension DayThursdayNational
2023-05-29Whit MondayMondaySolothurn
2023-06-08Corpus ChristiThursdaySolothurn
2023-08-01National DayTuesdayNational
2023-08-15Assumption DayTuesdaySolothurn
2023-11-01All Saints' DayWednesdaySolothurn
2023-12-08Immaculate ConceptionFridaySolothurn
2023-12-25Christmas DayMondayNational
2023-12-26St Stephen's DayTuesdaySolothurn

Automate Solothurn 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 Solothurn

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