Switzerland flag

Public Holidays in Neuchâtel, Switzerland 2023

10 total holidays4 national6 regional

2023 Holiday Calendar — Neuchâtel

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-01-02Berchtold's DayMondayNeuchâtel
2023-03-01Republic DayWednesdayNeuchâtel
2023-04-07Good FridayFridayNeuchâtel
2023-04-10Easter MondayMondayNeuchâtel
2023-05-01Labour DayMondayNeuchâtel
2023-05-18Ascension DayThursdayNational
2023-05-29Whit MondayMondayNeuchâtel
2023-08-01National DayTuesdayNational
2023-12-25Christmas DayMondayNational

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

JavaScript — filter for Neuchâtel

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