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