Switzerland flag

Public Holidays in Jura, Switzerland 2027

8 total holidays3 national5 regional

2027 Holiday Calendar — Jura

DateHolidayDayScope
2027-01-01New Year's DayFridayNational
2027-01-02Berchtold's DaySaturdayJura
2027-05-01Labour DaySaturdayJura
2027-06-23Independence of JuraWednesdayJura
2027-08-01National DaySundayNational
2027-08-15Assumption DaySundayJura
2027-11-01All Saints' DayMondayJura
2027-12-25Christmas DaySaturdayNational

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=2027" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Jura

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=CH&year=2027",
  { 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 2027 — Complete List