Uzbekistan 2024 Holidays

List of public holidays in Uzbekistan for year 2024

Uzbekistan - 2024 Holidays
15 of 15 holidays
DateDayNameType
Jan 1, 2024MondayNew YearPublic Holiday
Jan 14, 2024SundayDefenders of the Motherland DayObservance
Mar 8, 2024FridayInternational Women's DayPublic Holiday
Mar 11, 2024MondayRamadan Start (Tentative Date)Observance
Mar 20, 2024WednesdayMarch EquinoxSeason
Mar 21, 2024ThursdayNowruzPublic Holiday
Apr 10, 2024WednesdayEid al-Fitr (Tentative Date)Public Holiday
May 9, 2024ThursdayRemembrance DayPublic Holiday
Jun 17, 2024MondayEid al-Adha (Tentative Date)Public Holiday
Jun 21, 2024FridayJune SolsticeSeason
Sep 1, 2024SundayIndependence DayPublic Holiday
Sep 22, 2024SundaySeptember EquinoxSeason
Oct 1, 2024TuesdayTeachers DayPublic Holiday
Dec 8, 2024SundayConstitution DayPublic Holiday
Dec 21, 2024SaturdayDecember SolsticeSeason

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

There are 9 public holidays in Uzbekistan in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Uzbekistan holidays list via API?

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