Germany flag

Public Holidays in North Rhine-Westphalia, Germany 2028

6 total holidays5 national1 regional

2028 Holiday Calendar — North Rhine-Westphalia

DateHolidayDayScope
2028-01-01New Year's DaySaturdayNational
2028-05-01Labour DayMondayNational
2028-10-03German Unity DayTuesdayNational
2028-11-01All Saints' DayWednesdayNorth Rhine-Westphalia
2028-12-25Christmas DayMondayNational
2028-12-262nd Day of ChristmasTuesdayNational

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