United Kingdom flag

Public Holidays in Northern Ireland, United Kingdom 2022

13 total holidays9 national4 regional

2022 Holiday Calendar — Northern Ireland

DateHolidayDayScope
2022-01-01New Year's DaySaturdayNational
2022-03-17Saint Patrick's DayThursdayNorthern Ireland
2022-04-15Good FridayFridayNational
2022-04-18Easter MondayMondayNorthern Ireland
2022-05-02May DayMondayNational
2022-06-02Late May Bank HolidayThursdayNational
2022-06-03Her Majesty The Queen's Platinum JubileeFridayNational
2022-07-12Battle of the BoyneTuesdayNorthern Ireland
2022-08-29August Bank HolidayMondayNorthern Ireland
2022-09-19Bank Holiday for the State Funeral of Queen Elizabeth IIMondayNational
2022-12-25Christmas DaySundayNational
2022-12-26Boxing DayMondayNational
2022-12-27Christmas HolidayTuesdayNational

Automate Northern Ireland 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=GB&year=2022" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Northern Ireland

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=GB&year=2022",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Northern Ireland (ISO code: NIR)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("NIR")
);

Other Years — Northern Ireland

Other Regions — United Kingdom

Public Holidays in Northern Ireland, United Kingdom 2022 — Complete List