Public Holidays in Fribourg, Switzerland 2024
14 total holidays4 national10 regional
2024 Holiday Calendar — Fribourg
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2024-01-01 | New Year's Day | Monday | National |
| 2024-01-02 | Berchtold's Day | Tuesday | Fribourg |
| 2024-03-29 | Good Friday | Friday | Fribourg |
| 2024-04-01 | Easter Monday | Monday | Fribourg |
| 2024-05-01 | Labour Day | Wednesday | Fribourg |
| 2024-05-09 | Ascension Day | Thursday | National |
| 2024-05-20 | Whit Monday | Monday | Fribourg |
| 2024-05-30 | Corpus Christi | Thursday | Fribourg |
| 2024-08-01 | National Day | Thursday | National |
| 2024-08-15 | Assumption Day | Thursday | Fribourg |
| 2024-11-01 | All Saints' Day | Friday | Fribourg |
| 2024-12-08 | Immaculate Conception | Sunday | Fribourg |
| 2024-12-25 | Christmas Day | Wednesday | National |
| 2024-12-26 | St Stephen's Day | Thursday | Fribourg |
Automate Fribourg 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=CH&year=2024" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Fribourg
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=CH&year=2024",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Fribourg (ISO code: FR)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("FR")
);