Switzerland flag

Public Holidays in Solothurn, Switzerland 2031

10 total holidays3 national7 regional

2031 Holiday Calendar — Solothurn

DateHolidayDayScope
2031-01-01New Year's DayWednesdayNational
2031-01-02Berchtold's DayThursdaySolothurn
2031-03-19St Joseph's DayWednesdaySolothurn
2031-05-01Labour DayThursdaySolothurn
2031-08-01National DayFridayNational
2031-08-15Assumption DayFridaySolothurn
2031-11-01All Saints' DaySaturdaySolothurn
2031-12-08Immaculate ConceptionMondaySolothurn
2031-12-25Christmas DayThursdayNational
2031-12-26St Stephen's DayFridaySolothurn

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

JavaScript — filter for Solothurn

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