Switzerland flag

Public Holidays in Solothurn, Switzerland 2029

10 total holidays3 national7 regional

2029 Holiday Calendar — Solothurn

DateHolidayDayScope
2029-01-01New Year's DayMondayNational
2029-01-02Berchtold's DayTuesdaySolothurn
2029-03-19St Joseph's DayMondaySolothurn
2029-05-01Labour DayTuesdaySolothurn
2029-08-01National DayWednesdayNational
2029-08-15Assumption DayWednesdaySolothurn
2029-11-01All Saints' DayThursdaySolothurn
2029-12-08Immaculate ConceptionSaturdaySolothurn
2029-12-25Christmas DayTuesdayNational
2029-12-26St Stephen's DayWednesdaySolothurn

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

JavaScript — filter for Solothurn

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