Kuwait 2024 Holidays

List of public holidays in Kuwait for year 2024

Kuwait - 2024 Holidays
17 of 17 holidays
DateDayNameType
Jan 1, 2024MondayNew Year's DayOfficial holiday
Feb 7, 2024WednesdayIsra and MirajOfficial holiday
Feb 25, 2024SundayNational DayOfficial holiday
Feb 26, 2024MondayLiberation DayOfficial holiday
Mar 11, 2024MondayRamadan Start (Tentative Date)Observance
Mar 20, 2024WednesdayMarch EquinoxSeason
Apr 10, 2024WednesdayEid al-Fitr (Tentative Date)Official holiday
Apr 12, 2024FridayEid al-Fitr holiday (Tentative Date)Official holiday
Jun 16, 2024SundayWaqfat Arafat Day (Tentative Date)Official holiday
Jun 17, 2024MondayEid al-Adha (Tentative Date)Official holiday
Jun 19, 2024WednesdayEid al-Adha holiday (Tentative Date)Official holiday
Jun 20, 2024ThursdayJune SolsticeSeason
Jul 8, 2024MondayIslamic New Year (Tentative Date)Official holiday
Sep 16, 2024MondayThe Prophet's Birthday (Tentative Date)Official holiday
Sep 22, 2024SundaySeptember EquinoxSeason
Dec 21, 2024SaturdayDecember SolsticeSeason
Dec 31, 2024TuesdayNew Year's EveObservance

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

There are 0 public holidays in Kuwait in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Kuwait holidays list via API?

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