Germany flag

Public Holidays in North Rhine-Westphalia, Germany 2029

6 total holidays5 national1 regional

2029 Holiday Calendar — North Rhine-Westphalia

DateHolidayDayScope
2029-01-01New Year's DayMondayNational
2029-05-01Labour DayTuesdayNational
2029-10-03German Unity DayWednesdayNational
2029-11-01All Saints' DayThursdayNorth Rhine-Westphalia
2029-12-25Christmas DayTuesdayNational
2029-12-262nd Day of ChristmasWednesdayNational

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=2029" \
  -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=2029",
  { 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 2029 — Complete List