United States flag

Public Holidays in New York, United States 2027

26 total holidays23 national3 regional

2027 Holiday Calendar — New York

DateHolidayDayScope
2027-01-01New Year's DayFridayNational
2027-01-06EpiphanyWednesdayNational
2027-01-18Martin Luther King Jr. DayMondayNational
2027-02-04Rosa Parks DayThursdayNew York
2027-02-10Ash WednesdayWednesdayNational
2027-02-12Lincoln's BirthdayFridayNew York
2027-02-15Presidents' DayMondayNational
2027-02-15Susan B. Anthony's BirthdayMondayNew York
2027-03-28Easter SundaySundayNational
2027-03-29Easter MondayMondayNational
2027-05-06Ascension DayThursdayNational
2027-05-23Trinity SundaySundayNational
2027-05-27Corpus ChristiThursdayNational
2027-05-31Memorial DayMondayNational
2027-06-15AshuraTuesdayNational
2027-08-15Assumption of MarySundayNational
2027-09-06Labor DayMondayNational
2027-10-04Feast of St Francis of AssisiMondayNational
2027-11-01All Saints' DayMondayNational
2027-11-02All Souls' DayTuesdayNational
2027-11-11Veterans DayThursdayNational
2027-11-25Thanksgiving DayThursdayNational
2027-12-08Feast of the Immaculate ConceptionWednesdayNational
2027-12-12Feast of Our Lady of GuadalupeSundayNational
2027-12-24Christmas DayFridayNational
2027-12-25Christmas DaySaturdayNational

Automate New York 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=2027" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for New York

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