Switzerland flag

Public Holidays in Jura, Switzerland 2024

13 total holidays4 national9 regional

2024 Holiday Calendar — Jura

DateHolidayDayScope
2024-01-01New Year's DayMondayNational
2024-01-02Berchtold's DayTuesdayJura
2024-03-29Good FridayFridayJura
2024-04-01Easter MondayMondayJura
2024-05-01Labour DayWednesdayJura
2024-05-09Ascension DayThursdayNational
2024-05-20Whit MondayMondayJura
2024-05-30Corpus ChristiThursdayJura
2024-06-23Independence of JuraSundayJura
2024-08-01National DayThursdayNational
2024-08-15Assumption DayThursdayJura
2024-11-01All Saints' DayFridayJura
2024-12-25Christmas DayWednesdayNational

Automate Jura 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 Jura

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 Jura (ISO code: JU)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("JU")
);
Public Holidays in Jura, Switzerland 2024 — Complete List