Palau 2026 Holidays

List of public holidays in Palau for year 2026

Palau - 2026 Holidays
17 of 17 holidays
DateDayNameType
Jan 1, 2026ThursdayNew Year's DayPublic Holiday
Mar 15, 2026SundayYouth DayPublic Holiday
Mar 16, 2026MondayDay off for Youth DayPublic Holiday
Mar 20, 2026FridayMarch EquinoxSeason
May 5, 2026TuesdaySenior Citizens DayPublic Holiday
Jun 1, 2026MondayPresident's DayPublic Holiday
Jun 21, 2026SundayJune SolsticeSeason
Jul 9, 2026ThursdayConstitution DayPublic Holiday
Sep 7, 2026MondayLabor DayPublic Holiday
Sep 23, 2026WednesdaySeptember EquinoxSeason
Oct 1, 2026ThursdayIndependence DayPublic Holiday
Oct 23, 2026FridayDay off for United Nations DayPublic Holiday
Oct 24, 2026SaturdayUnited Nations DayPublic Holiday
Nov 26, 2026ThursdayThanksgivingPublic Holiday
Nov 27, 2026FridayFamily DayPublic Holiday
Dec 22, 2026TuesdayDecember SolsticeSeason
Dec 25, 2026FridayChristmas DayPublic Holiday

We strive to provide an accurate and up-to-date holiday list for Palau. 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 Palau this year in 2026?

There are 13 public holidays in Palau in 2026. If you are planning ahead? Check upcoming holidays

How to retrieve the Palau holidays list via API?

Simply make a GET request to v1/holidays?country=PW&year=2026 API to retrieve this list of Palau 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: 'PW',
  year: '2026'
});
console.log(holidays);
API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=PW&year=2026" \
  -H "Authorization: Bearer YOUR_API_KEY"