Public Holidays in Mecklenburg-Vorpommern, Germany 2025
11 total holidays9 national2 regional
2025 Holiday Calendar — Mecklenburg-Vorpommern
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2025-01-01 | New Year's Day | Wednesday | National |
| 2025-03-08 | International Women's Day | Saturday | Mecklenburg-Vorpommern |
| 2025-04-18 | Good Friday | Friday | National |
| 2025-04-21 | Easter Monday | Monday | National |
| 2025-05-01 | Labour Day | Thursday | National |
| 2025-05-29 | Ascension Day | Thursday | National |
| 2025-06-09 | Whit Monday | Monday | National |
| 2025-10-03 | German Unity Day | Friday | National |
| 2025-10-31 | Reformation Day | Friday | Mecklenburg-Vorpommern |
| 2025-12-25 | Christmas Day | Thursday | National |
| 2025-12-26 | 2nd Day of Christmas | Friday | National |
Automate Mecklenburg-Vorpommern 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=2025" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Mecklenburg-Vorpommern
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=DE&year=2025",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Mecklenburg-Vorpommern (ISO code: MV)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("MV")
);