United Kingdom flag

Public Holidays in Northern Ireland, United Kingdom 2031

7 total holidays4 national3 regional

2031 Holiday Calendar — Northern Ireland

DateHolidayDayScope
2031-01-01New Year's DayWednesdayNational
2031-03-17Saint Patrick's DayMondayNorthern Ireland
2031-05-05May DayMondayNational
2031-07-12Battle of the BoyneSaturdayNorthern Ireland
2031-07-14Battle of the Boyne HolidayMondayNorthern Ireland
2031-12-25Christmas DayThursdayNational
2031-12-26Boxing DayFridayNational

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

JavaScript — filter for Northern Ireland

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