Germany flag

Public Holidays in Hesse, Germany 2021

10 total holidays9 national1 regional

2021 Holiday Calendar — Hesse

DateHolidayDayScope
2021-01-01New Year's DayFridayNational
2021-04-02Good FridayFridayNational
2021-04-05Easter MondayMondayNational
2021-05-01Labour DaySaturdayNational
2021-05-13Ascension DayThursdayNational
2021-05-24Whit MondayMondayNational
2021-06-03Corpus ChristiThursdayHesse
2021-10-03German Unity DaySundayNational
2021-12-25Christmas DaySaturdayNational
2021-12-262nd Day of ChristmasSundayNational

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

JavaScript — filter for Hesse

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