Switzerland flag

Public Holidays in Obwalden, Switzerland 2027

8 total holidays3 national5 regional

2027 Holiday Calendar — Obwalden

DateHolidayDayScope
2027-01-01New Year's DayFridayNational
2027-01-02Berchtold's DaySaturdayObwalden
2027-08-01National DaySundayNational
2027-08-15Assumption DaySundayObwalden
2027-11-01All Saints' DayMondayObwalden
2027-12-08Immaculate ConceptionWednesdayObwalden
2027-12-25Christmas DaySaturdayNational
2027-12-26St Stephen's DaySundayObwalden

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

JavaScript — filter for Obwalden

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=CH&year=2027",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Obwalden (ISO code: OW)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("OW")
);
Public Holidays in Obwalden, Switzerland 2027 — Complete List