Germany flag

Public Holidays in Brandenburg, Germany 2021

12 total holidays9 national3 regional

2021 Holiday Calendar — Brandenburg

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

Automate Brandenburg 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 Brandenburg

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 Brandenburg (ISO code: BB)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("BB")
);
Public Holidays in Brandenburg, Germany 2021 — Complete List