United States flag

Public Holidays in Georgia, United States 2021

31 total holidays25 national6 regional

2021 Holiday Calendar — Georgia

DateHolidayDayScope
2021-01-01New Year's DayFridayNational
2021-01-06EpiphanyWednesdayNational
2021-01-18Martin Luther King Jr. DayMondayNational
2021-01-19State HolidayTuesdayGeorgia
2021-02-12Georgia DayFridayGeorgia
2021-02-15Presidents' DayMondayNational
2021-02-17Ash WednesdayWednesdayNational
2021-04-02State HolidayFridayGeorgia
2021-04-04Easter SundaySundayNational
2021-04-05Easter MondayMondayNational
2021-04-26State HolidayMondayGeorgia
2021-05-13Ascension DayThursdayNational
2021-05-30Trinity SundaySundayNational
2021-05-31Memorial DayMondayNational
2021-06-03Corpus ChristiThursdayNational
2021-08-15Assumption of MarySundayNational
2021-08-19AshuraThursdayNational
2021-09-06Labor DayMondayNational
2021-10-04Feast of St Francis of AssisiMondayNational
2021-11-01All Saints' DayMondayNational
2021-11-02All Souls' DayTuesdayNational
2021-11-11Veterans DayThursdayNational
2021-11-25Thanksgiving DayThursdayNational
2021-11-26State HolidayFridayGeorgia
2021-12-08Feast of the Immaculate ConceptionWednesdayNational
2021-12-12Feast of Our Lady of GuadalupeSundayNational
2021-12-14Asarah B'TevetTuesdayNational
2021-12-23Washington's BirthdayThursdayGeorgia
2021-12-24Christmas DayFridayNational
2021-12-25Christmas DaySaturdayNational
2021-12-31New Year's DayFridayNational

Automate Georgia holiday data via API

One API call. Filter by region code. Integrate in minutes.

cURL

curl -X GET \
  "https://api.holidays.rest/v1/holidays?country=US&year=2021" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Georgia

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=US&year=2021",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Georgia (ISO code: GA)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("GA")
);
Public Holidays in Georgia, United States 2021 — Complete List