Switzerland flag

Public Holidays in Thurgau, Switzerland 2023

10 total holidays4 national6 regional

2023 Holiday Calendar — Thurgau

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-01-02Berchtold's DayMondayThurgau
2023-04-07Good FridayFridayThurgau
2023-04-10Easter MondayMondayThurgau
2023-05-01Labour DayMondayThurgau
2023-05-18Ascension DayThursdayNational
2023-05-29Whit MondayMondayThurgau
2023-08-01National DayTuesdayNational
2023-12-25Christmas DayMondayNational
2023-12-26St Stephen's DayTuesdayThurgau

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

JavaScript — filter for Thurgau

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