Switzerland flag

Public Holidays in Neuchâtel, Switzerland 2020

10 total holidays4 national6 regional

2020 Holiday Calendar — Neuchâtel

DateHolidayDayScope
2020-01-01New Year's DayWednesdayNational
2020-01-02Berchtold's DayThursdayNeuchâtel
2020-03-01Republic DaySundayNeuchâtel
2020-04-10Good FridayFridayNeuchâtel
2020-04-13Easter MondayMondayNeuchâtel
2020-05-01Labour DayFridayNeuchâtel
2020-05-21Ascension DayThursdayNational
2020-06-01Whit MondayMondayNeuchâtel
2020-08-01National DaySaturdayNational
2020-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=2020" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Neuchâtel

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