Germany flag

Public Holidays in Saxony-Anhalt, Germany 2026

11 total holidays9 national2 regional

2026 Holiday Calendar — Saxony-Anhalt

DateHolidayDayScope
2026-01-01New Year's DayThursdayNational
2026-01-06EpiphanyTuesdaySaxony-Anhalt
2026-04-03Good FridayFridayNational
2026-04-06Easter MondayMondayNational
2026-05-01Labour DayFridayNational
2026-05-14Ascension DayThursdayNational
2026-05-25Whit MondayMondayNational
2026-10-03German Unity DaySaturdayNational
2026-10-31Reformation DaySaturdaySaxony-Anhalt
2026-12-25Christmas DayFridayNational
2026-12-262nd Day of ChristmasSaturdayNational

Automate Saxony-Anhalt 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=2026" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Saxony-Anhalt

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