United Kingdom flag

Public Holidays in Northern Ireland, United Kingdom 2028

7 total holidays3 national4 regional

2028 Holiday Calendar — Northern Ireland

DateHolidayDayScope
2028-03-17Saint Patrick's DayFridayNorthern Ireland
2028-04-17Easter MondayMondayNorthern Ireland
2028-05-01May DayMondayNational
2028-07-12Battle of the BoyneWednesdayNorthern Ireland
2028-08-28Summer Bank HolidayMondayNorthern Ireland
2028-12-25Christmas DayMondayNational
2028-12-26Boxing DayTuesdayNational

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=2028" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Northern Ireland

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=GB&year=2028",
  { 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 2028 — Complete List