Public Holidays in Brandenburg, Germany 2021
12 total holidays9 national3 regional
2021 Holiday Calendar — Brandenburg
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2021-01-01 | New Year's Day | Friday | National |
| 2021-04-02 | Good Friday | Friday | National |
| 2021-04-04 | Easter Sunday | Sunday | Brandenburg |
| 2021-04-05 | Easter Monday | Monday | National |
| 2021-05-01 | Labour Day | Saturday | National |
| 2021-05-13 | Ascension Day | Thursday | National |
| 2021-05-23 | Whit Sunday | Sunday | Brandenburg |
| 2021-05-24 | Whit Monday | Monday | National |
| 2021-10-03 | German Unity Day | Sunday | National |
| 2021-10-31 | Reformation Day | Sunday | Brandenburg |
| 2021-12-25 | Christmas Day | Saturday | National |
| 2021-12-26 | 2nd Day of Christmas | Sunday | National |
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")
);