Uzbekistan 2025 Holidays

List of public holidays in Uzbekistan for year 2025

Uzbekistan - 2025 Holidays
17 of 17 holidays
DateDayNameType
Jan 1, 2025WednesdayNew YearPublic Holiday
Jan 2, 2025ThursdayNew Year HolidayPublic Holiday
Jan 4, 2025SaturdayWorking DayWorking Day on a Weekend
Jan 14, 2025TuesdayDefenders of the Motherland DayObservance
Mar 1, 2025SaturdayRamadan Start (Tentative Date)Observance
Mar 8, 2025SaturdayInternational Women's DayPublic Holiday
Mar 20, 2025ThursdayMarch EquinoxSeason
Mar 21, 2025FridayNowruzPublic Holiday
Mar 31, 2025MondayEid al-Fitr (Tentative Date)Public Holiday
May 9, 2025FridayRemembrance DayPublic Holiday
Jun 7, 2025SaturdayEid al-Adha (Tentative Date)Public Holiday
Jun 21, 2025SaturdayJune SolsticeSeason
Sep 1, 2025MondayIndependence DayPublic Holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Oct 1, 2025WednesdayTeachers DayPublic Holiday
Dec 8, 2025MondayConstitution DayPublic Holiday
Dec 21, 2025SundayDecember 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 2025?

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