Switzerland flag

Public Holidays in Thurgau, Switzerland 2027

6 total holidays3 national3 regional

2027 Holiday Calendar — Thurgau

DateHolidayDayScope
2027-01-01New Year's DayFridayNational
2027-01-02Berchtold's DaySaturdayThurgau
2027-05-01Labour DaySaturdayThurgau
2027-08-01National DaySundayNational
2027-12-25Christmas DaySaturdayNational
2027-12-26St Stephen's DaySundayThurgau

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

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