Switzerland flag

Public Holidays in Neuchâtel, Switzerland 2025

10 total holidays4 national6 regional

2025 Holiday Calendar — Neuchâtel

DateHolidayDayScope
2025-01-01New Year's DayWednesdayNational
2025-01-02Berchtold's DayThursdayNeuchâtel
2025-03-01Republic DaySaturdayNeuchâtel
2025-04-18Good FridayFridayNeuchâtel
2025-04-21Easter MondayMondayNeuchâtel
2025-05-01Labour DayThursdayNeuchâtel
2025-05-29Ascension DayThursdayNational
2025-06-09Whit MondayMondayNeuchâtel
2025-08-01National DayFridayNational
2025-12-25Christmas DayThursdayNational

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

JavaScript — filter for Neuchâtel

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