Switzerland flag

Public Holidays in Solothurn, Switzerland 2026

15 total holidays4 national11 regional

2026 Holiday Calendar — Solothurn

DateHolidayDayScope
2026-01-01New Year's DayThursdayNational
2026-01-02Berchtold's DayFridaySolothurn
2026-03-19St Joseph's DayThursdaySolothurn
2026-04-03Good FridayFridaySolothurn
2026-04-06Easter MondayMondaySolothurn
2026-05-01Labour DayFridaySolothurn
2026-05-14Ascension DayThursdayNational
2026-05-25Whit MondayMondaySolothurn
2026-06-04Corpus ChristiThursdaySolothurn
2026-08-01National DaySaturdayNational
2026-08-15Assumption DaySaturdaySolothurn
2026-11-01All Saints' DaySundaySolothurn
2026-12-08Immaculate ConceptionTuesdaySolothurn
2026-12-25Christmas DayFridayNational
2026-12-26St Stephen's DaySaturdaySolothurn

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=2026" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Solothurn

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=CH&year=2026",
  { 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 2026 — Complete List