Kuwait 2025 Holidays

List of public holidays in Kuwait for year 2025

Kuwait - 2025 Holidays
18 of 18 holidays
DateDayNameType
Jan 1, 2025WednesdayNew Year's DayOfficial holiday
Jan 2, 2025ThursdayNew Year's Day HolidayGovernment Holiday
Jan 27, 2025MondayIsra and Miraj (Tentative Date)Official holiday
Feb 25, 2025TuesdayNational DayOfficial holiday
Feb 26, 2025WednesdayLiberation DayOfficial holiday
Mar 1, 2025SaturdayRamadan Start (Tentative Date)Observance
Mar 20, 2025ThursdayMarch EquinoxSeason
Mar 31, 2025MondayEid al-Fitr (Tentative Date)Official holiday
Apr 2, 2025WednesdayEid al-Fitr holiday (Tentative Date)Official holiday
Jun 6, 2025FridayWaqfat Arafat Day (Tentative Date)Official holiday
Jun 7, 2025SaturdayEid al-Adha (Tentative Date)Official holiday
Jun 9, 2025MondayEid al-Adha holiday (Tentative Date)Official holiday
Jun 21, 2025SaturdayJune SolsticeSeason
Jun 27, 2025FridayIslamic New Year (Tentative Date)Official holiday
Sep 5, 2025FridayThe Prophet's Birthday (Tentative Date)Official holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Dec 21, 2025SundayDecember SolsticeSeason
Dec 31, 2025WednesdayNew 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 2025?

There are 0 public holidays in Kuwait in 2025. 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=2025 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: '2025'
});
console.log(holidays);
API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=KW&year=2025" \
  -H "Authorization: Bearer YOUR_API_KEY"