Georgia Holidays in 2023
List of public holidays in Georgia 2023 calendar
Date | Day | Name | Type |
---|---|---|---|
1st January | Sunday | New Year's Day | Public holiday |
2nd January | Monday | New Year's (Day 2) | Public holiday |
7th January | Saturday | Orthodox Christmas Day | Public holiday |
19th January | Thursday | Orthodox Epiphany | Public holiday |
14th February | Tuesday | Valentine's Day | Observance |
3rd March | Friday | Mothers' Day | Public holiday |
8th March | Wednesday | International Women's Day | Public holiday |
21st March | Tuesday | Nowruz | Observance |
21st March | Tuesday | March Equinox | Season |
9th April | Sunday | Independence Restoration Day | Public holiday |
14th April | Friday | Orthodox Good Friday | Public holiday |
15th April | Saturday | Orthodox Holy Saturday | Public holiday |
16th April | Sunday | Orthodox Easter Sunday | Public holiday |
17th April | Monday | Orthodox Easter Monday | Public holiday |
9th May | Tuesday | Victory Day | Public holiday |
12th May | Friday | St Andrew's Day | Public holiday |
26th May | Friday | Independence Day | Public holiday |
18th June | Sunday | Fathers' Day | Observance |
21st June | Wednesday | June Solstice | Season |
28th August | Monday | Day of the Assumption of Mary | Public holiday |
23rd September | Saturday | September Equinox | Season |
14th October | Saturday | Svetitskhovloba | Public holiday |
23rd November | Thursday | St George's Day | Public holiday |
22nd December | Friday | December Solstice | Season |
31st December | Sunday | New Year's Eve | Observance |
We strive to provide an accurate and up-to-date holiday's list for Georgia. however, please note that some holidays dates may change. If you discover any discrepancies, kindly report to us.
Note: Some holidays are color-coded based on the types of holidays. For example -
- Public Holidays
- Local Holidays
- Other Holidays
Frequently Asked Questions
How many holidays in Georgia this year in 2023?
There are 17 holidays in Georgia in 2023
How to retrieve the Georgia holidays list via API?
Simply make a GET request to v1/holidays?country=GE&year=2023
API to retrieve this list of Georgia 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: 'GE', year: '2023'});
console.log(holidays);