Public Holidays in Lower Saxony, Germany 2031
6 total holidays5 national1 regional
2031 Holiday Calendar — Lower Saxony
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2031-01-01 | New Year's Day | Wednesday | National |
| 2031-05-01 | Labour Day | Thursday | National |
| 2031-10-03 | German Unity Day | Friday | National |
| 2031-10-31 | Reformation Day | Friday | Lower Saxony |
| 2031-12-25 | Christmas Day | Thursday | National |
| 2031-12-26 | 2nd Day of Christmas | Friday | National |
Automate Lower Saxony 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=2031" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Lower Saxony
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=DE&year=2031",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Lower Saxony (ISO code: NI)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("NI")
);