Germany flag

Public Holidays in North Rhine-Westphalia, Germany 2022

11 total holidays9 national2 regional

2022 Holiday Calendar — North Rhine-Westphalia

DateHolidayDayScope
2022-01-01New Year's DaySaturdayNational
2022-04-15Good FridayFridayNational
2022-04-18Easter MondayMondayNational
2022-05-01Labour DaySundayNational
2022-05-26Ascension DayThursdayNational
2022-06-06Whit MondayMondayNational
2022-06-16Corpus ChristiThursdayNorth Rhine-Westphalia
2022-10-03German Unity DayMondayNational
2022-11-01All Saints' DayTuesdayNorth Rhine-Westphalia
2022-12-25Christmas DaySundayNational
2022-12-262nd Day of ChristmasMondayNational

Automate North Rhine-Westphalia 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=DE&year=2022" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for North Rhine-Westphalia

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=DE&year=2022",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for North Rhine-Westphalia (ISO code: NW)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("NW")
);
Public Holidays in North Rhine-Westphalia, Germany 2022 — Complete List