Public Holidays in Brandenburg, Germany 2020
12 total holidays9 national3 regional
2020 Holiday Calendar — Brandenburg
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2020-01-01 | New Year's Day | Wednesday | National |
| 2020-04-10 | Good Friday | Friday | National |
| 2020-04-12 | Easter Sunday | Sunday | Brandenburg |
| 2020-04-13 | Easter Monday | Monday | National |
| 2020-05-01 | Labour Day | Friday | National |
| 2020-05-21 | Ascension Day | Thursday | National |
| 2020-05-31 | Whit Sunday | Sunday | Brandenburg |
| 2020-06-01 | Whit Monday | Monday | National |
| 2020-10-03 | German Unity Day | Saturday | National |
| 2020-10-31 | Reformation Day | Saturday | Brandenburg |
| 2020-12-25 | Christmas Day | Friday | National |
| 2020-12-26 | 2nd Day of Christmas | Saturday | 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=2020" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Brandenburg
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=DE&year=2020",
{ 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")
);