Morocco 2024 Holidays

List of public holidays in Morocco for year 2024

Morocco - 2024 Holidays
23 of 23 holidays
DateDayNameType
Jan 1, 2024MondayNew Year's DayNational holiday
Jan 11, 2024ThursdayAnniversary of the Independence ManifestoNational holiday
Mar 10, 2024SundayDaylight Saving Time endsClock change/Daylight Saving Time
Mar 11, 2024MondayRamadan Start (Tentative Date)Observance
Mar 20, 2024WednesdayMarch EquinoxSeason
Apr 10, 2024WednesdayEid al-Fitr (Tentative Date)National holiday
Apr 11, 2024ThursdayEid al-Fitr holiday (Tentative Date)National holiday
Apr 14, 2024SundayDaylight Saving Time startsClock change/Daylight Saving Time
May 1, 2024WednesdayLabour Day/May DayNational holiday
Jun 17, 2024MondayEid al-Adha (Tentative Date)National holiday
Jun 18, 2024TuesdayEid al-Adha Holiday (Tentative Date)National holiday
Jun 20, 2024ThursdayJune SolsticeSeason
Jul 8, 2024MondayHijra New Year (Tentative Date)National holiday
Jul 30, 2024TuesdayFeast of the ThroneNational holiday
Aug 14, 2024WednesdayAnniversary of the Recovery Oued Ed-DahabNational holiday
Aug 20, 2024TuesdayAnniversary of the Revolution of the King and the PeopleNational holiday
Aug 21, 2024WednesdayYouth DayNational holiday
Sep 16, 2024MondayThe Prophet Muhammad's Birthday (Tentative Date)National holiday
Sep 17, 2024TuesdayThe Prophet Muhammad's Birthday Holiday (Tentative Date)National holiday
Sep 22, 2024SundaySeptember EquinoxSeason
Nov 6, 2024WednesdayAnniversary of the Green MarchNational holiday
Nov 18, 2024MondayIndependence DayNational holiday
Dec 21, 2024SaturdayDecember SolsticeSeason

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

There are 16 public holidays in Morocco in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Morocco holidays list via API?

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