Oman 2025 Holidays

List of public holidays in Oman for year 2025

Oman - 2025 Holidays
15 of 15 holidays
DateDayNameType
Jan 1, 2025WednesdayNew YearPublic Holiday
Jan 27, 2025MondayIsra and Mi'raj (Tentative Date)Public Holiday
Mar 1, 2025SaturdayRamadan Start (Tentative Date)Observance
Mar 20, 2025ThursdayMarch EquinoxSeason
Mar 31, 2025MondayEid al-Fitr (Tentative Date)Public Holiday
Apr 3, 2025ThursdayEid al-Fitr Holiday (Tentative Date)Public Holiday
Jun 6, 2025FridayEid al-AdhaPublic Holiday
Jun 8, 2025SundayEid al-Adha HolidayPublic Holiday
Jun 9, 2025MondayEid al-Adha Holiday (Tentative Date)Public Holiday
Jun 21, 2025SaturdayJune SolsticeSeason
Jun 27, 2025FridayMuharram (Tentative Date)Public Holiday
Sep 5, 2025FridayThe Prophet's Birthday (Tentative Date)Public Holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Nov 18, 2025TuesdayNational DayPublic Holiday
Dec 21, 2025SundayDecember SolsticeSeason

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

There are 10 public holidays in Oman in 2025. If you are planning ahead? Check upcoming holidays

How to retrieve the Oman holidays list via API?

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