Austria flag

Public Holidays in Lower Austria, Austria 2021

14 total holidays13 national1 regional

2021 Holiday Calendar — Lower Austria

DateHolidayDayScope
2021-01-01New Year's DayFridayNational
2021-01-06EpiphanyWednesdayNational
2021-04-05Easter MondayMondayNational
2021-05-01Labour DaySaturdayNational
2021-05-13Ascension DayThursdayNational
2021-05-24Whit MondayMondayNational
2021-06-03Corpus ChristiThursdayNational
2021-08-15Assumption DaySundayNational
2021-10-26National DayTuesdayNational
2021-11-01All Saints' DayMondayNational
2021-11-15Saint Leopold's DayMondayLower Austria
2021-12-08Immaculate ConceptionWednesdayNational
2021-12-25Christmas DaySaturdayNational
2021-12-26Saint Stephen's DaySundayNational

Automate Lower Austria 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=AT&year=2021" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Lower Austria

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