Switzerland flag

Public Holidays in Jura, Switzerland 2028

8 total holidays3 national5 regional

2028 Holiday Calendar — Jura

DateHolidayDayScope
2028-01-01New Year's DaySaturdayNational
2028-01-02Berchtold's DaySundayJura
2028-05-01Labour DayMondayJura
2028-06-23Independence of JuraFridayJura
2028-08-01National DayTuesdayNational
2028-08-15Assumption DayTuesdayJura
2028-11-01All Saints' DayWednesdayJura
2028-12-25Christmas DayMondayNational

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

JavaScript — filter for Jura

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