Azerbaijan 2023 Holidays

List of public holidays in Azerbaijan for year 2023

Azerbaijan - 2023 Holidays
28 of 28 holidays
DateDayNameType
Jan 1, 2023SundayNew Year's DayPublic holiday
Jan 2, 2023MondayNew Year's HolidayPublic holiday
Jan 3, 2023TuesdayDay off for New Year's DayPublic holiday
Jan 4, 2023WednesdayDay off for New Year's HolidayPublic holiday
Jan 20, 2023FridayMartyrs’ DayPublic holiday
Mar 8, 2023WednesdayWomen's DayPublic holiday
Mar 20, 2023MondayNowruzPublic holiday
Mar 21, 2023TuesdayMarch EquinoxSeason
Mar 23, 2023ThursdayRamadan StartObservance
Mar 24, 2023FridayNowruz/Spring HolidayPublic holiday
Apr 24, 2023MondayRamadan holidayPublic holiday
May 9, 2023TuesdayVictory Day over FascismPublic holiday
May 28, 2023SundayRepublic DayPublic holiday
May 29, 2023MondayDay off for Republic DayPublic holiday
Jun 15, 2023ThursdayDay of National Salvation of the Azerbaijani PeoplePublic holiday
Jun 21, 2023WednesdayJune SolsticeSeason
Jun 26, 2023MondayAzerbaijan Armed Forces DayPublic holiday
Jun 28, 2023WednesdayFeast of the SacrificePublic holiday
Jun 29, 2023ThursdayFeast of the Sacrifice HolidayPublic holiday
Sep 23, 2023SaturdaySeptember EquinoxSeason
Oct 18, 2023WednesdayNational Independence DayObservance
Nov 8, 2023WednesdayVictory Day of the Republic of AzerbaijanPublic holiday
Nov 9, 2023ThursdayState Flag Day of AzerbaijanPublic holiday
Nov 12, 2023SundayConstitution DayObservance
Nov 17, 2023FridayNational Revival DayObservance
Dec 22, 2023FridayDecember SolsticeSeason
Dec 31, 2023SundayWorld Azerbaijanis Solidarity DayPublic holiday
Dec 31, 2023SundayNew Year's EveObservance

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

There are 19 public holidays in Azerbaijan in 2023. If you are planning ahead? Check upcoming holidays

How to retrieve the Azerbaijan holidays list via API?

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