Switzerland flag

Public Holidays in Thurgau, Switzerland 2025

10 total holidays4 national6 regional

2025 Holiday Calendar — Thurgau

DateHolidayDayScope
2025-01-01New Year's DayWednesdayNational
2025-01-02Berchtold's DayThursdayThurgau
2025-04-18Good FridayFridayThurgau
2025-04-21Easter MondayMondayThurgau
2025-05-01Labour DayThursdayThurgau
2025-05-29Ascension DayThursdayNational
2025-06-09Whit MondayMondayThurgau
2025-08-01National DayFridayNational
2025-12-25Christmas DayThursdayNational
2025-12-26St Stephen's DayFridayThurgau

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

JavaScript — filter for Thurgau

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