Switzerland flag

Public Holidays in Neuchâtel, Switzerland 2026

10 total holidays4 national6 regional

2026 Holiday Calendar — Neuchâtel

DateHolidayDayScope
2026-01-01New Year's DayThursdayNational
2026-01-02Berchtold's DayFridayNeuchâtel
2026-03-01Republic DaySundayNeuchâtel
2026-04-03Good FridayFridayNeuchâtel
2026-04-06Easter MondayMondayNeuchâtel
2026-05-01Labour DayFridayNeuchâtel
2026-05-14Ascension DayThursdayNational
2026-05-25Whit MondayMondayNeuchâtel
2026-08-01National DaySaturdayNational
2026-12-25Christmas DayFridayNational

Automate Neuchâtel 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 Neuchâtel

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