Germany flag

Public Holidays in Saarland, Germany 2024

12 total holidays9 national3 regional

2024 Holiday Calendar — Saarland

DateHolidayDayScope
2024-01-01New Year's DayMondayNational
2024-03-29Good FridayFridayNational
2024-04-01Easter MondayMondayNational
2024-05-01Labour DayWednesdayNational
2024-05-09Ascension DayThursdayNational
2024-05-20Whit MondayMondayNational
2024-05-30Corpus ChristiThursdaySaarland
2024-08-15Assumption DayThursdaySaarland
2024-10-03German Unity DayThursdayNational
2024-11-01All Saints' DayFridaySaarland
2024-12-25Christmas DayWednesdayNational
2024-12-262nd Day of ChristmasThursdayNational

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

JavaScript — filter for Saarland

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