Marshall Islands 2025 Holidays

List of public holidays in Marshall Islands for year 2025

Marshall Islands - 2025 Holidays
16 of 16 holidays
DateDayNameType
Jan 1, 2025WednesdayNew Year's DayPublic Holiday
Feb 28, 2025FridayRemembrance Day observedPublic Holiday
Mar 1, 2025SaturdayRemembrance DayPublic Holiday
Mar 20, 2025ThursdayMarch EquinoxSeason
Apr 18, 2025FridayGood FridayPublic Holiday
May 1, 2025ThursdayConstitution DayPublic Holiday
Jun 21, 2025SaturdayJune SolsticeSeason
Jul 4, 2025FridayFishermen's DayPublic Holiday
Sep 5, 2025FridayLabor DayPublic Holiday
Sep 23, 2025TuesdaySeptember EquinoxSeason
Sep 26, 2025FridayManit DayPublic Holiday
Nov 17, 2025MondayPresident's DayPublic Holiday
Dec 5, 2025FridayGospel DayPublic Holiday
Dec 22, 2025MondayDecember SolsticeSeason
Dec 25, 2025ThursdayChristmas DayPublic Holiday
Dec 31, 2025WednesdayNew Year's EveObservance

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

There are 11 public holidays in Marshall Islands in 2025. If you are planning ahead? Check upcoming holidays

How to retrieve the Marshall Islands holidays list via API?

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