Timor-Leste 2026 Holidays

List of public holidays in Timor-Leste for year 2026

Timor-Leste - 2026 Holidays
23 of 23 holidays
DateDayNameType
Jan 1, 2026ThursdayNew Year's DayPublic Holiday
Feb 17, 2026TuesdayChinese New YearObservance
Feb 18, 2026WednesdayCarnival / Ash WednesdayPublic Holiday
Mar 3, 2026TuesdayVeteran's DayPublic Holiday
Mar 20, 2026FridayEid ul Fitr (Tentative Date)Public Holiday
Mar 20, 2026FridayMarch EquinoxSeason
Apr 3, 2026FridayGood FridayPublic Holiday
May 1, 2026FridayLabor Day / May DayPublic Holiday
May 20, 2026WednesdayRestoration of Independence DayPublic Holiday
May 27, 2026WednesdayEid al-Adha (Tentative Date)Public Holiday
Jun 4, 2026ThursdayCorpus ChristiPublic Holiday
Jun 21, 2026SundayJune SolsticeSeason
Aug 30, 2026SundayPopular Consultation DayPublic Holiday
Sep 23, 2026WednesdaySeptember EquinoxSeason
Nov 1, 2026SundayAll Saints' DayPublic Holiday
Nov 2, 2026MondayAll Souls' DayPublic Holiday
Nov 12, 2026ThursdayYouth National DayPublic Holiday
Nov 28, 2026SaturdayProclamation of Independence DayPublic Holiday
Dec 7, 2026MondayDay of RemembrancePublic Holiday
Dec 8, 2026TuesdayDay of Our Lady of Immaculate ConceptionPublic Holiday
Dec 22, 2026TuesdayDecember SolsticeSeason
Dec 25, 2026FridayChristmas DayPublic Holiday
Dec 31, 2026ThursdayNational Heroes DayPublic Holiday

We strive to provide an accurate and up-to-date holiday list for Timor-Leste. However, please note that some holiday dates may change. If you discover any discrepancies, kindly report to us.

Holiday Type Color Legend

Holidays are color-coded based on their types:

  • Public HolidayPublic, National, Federal, and Gazetted holidays
  • Local HolidayLocal, Regional, State, and Provincial holidays
  • Other HolidayObservances and other types of holidays
Frequently Asked Questions

How many holidays in Timor-Leste this year in 2026?

There are 18 public holidays in Timor-Leste in 2026. If you are planning ahead? Check upcoming holidays

How to retrieve the Timor-Leste holidays list via API?

Simply make a GET request to v1/holidays?country=TL&year=2026 API to retrieve this list of Timor-Leste holidays.

Here is an example using Node.js and our official package on NPM:

// Install the 11holidays package from NPM
// npm i 11holidays

import HolidaysApi from '11holidays';

const instance = new HolidaysApi(API_KEY);
const holidays = await instance.holidays.list({
  country: 'TL',
  year: '2026'
});
console.log(holidays);
API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=TL&year=2026" \
  -H "Authorization: Bearer YOUR_API_KEY"