Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2028

25 total holidays18 national7 regional

2028 Holiday Calendar — Newfoundland and Labrador

DateHolidayDayScope
2028-01-01New Year's DaySaturdayNational
2028-01-03New Year's DayMondayNational
2028-02-29Carnival / Shrove Tuesday / Pancake DayTuesdayNational
2028-03-20St. Patrick's DayMondayNewfoundland and Labrador
2028-04-09Palm SundaySundayNational
2028-04-13Maundy ThursdayThursdayNational
2028-04-14Good FridayFridayNational
2028-04-15Holy SaturdaySaturdayNational
2028-04-16Easter SundaySundayNewfoundland and Labrador
2028-04-17Easter MondayMondayNational
2028-04-24St. George's DayMondayNewfoundland and Labrador
2028-05-22Victoria DayMondayNational
2028-06-26June HolidayMondayNewfoundland and Labrador
2028-07-01Canada DaySaturdayNational
2028-07-01Memorial DaySaturdayNewfoundland and Labrador
2028-07-10Orangemen's DayMondayNewfoundland and Labrador
2028-08-02The Royal St John's Regatta (Regatta Day)WednesdayNewfoundland and Labrador
2028-09-04Labour DayMondayNational
2028-09-30National Day for Truth and ReconciliationSaturdayNational
2028-10-04Feast of St Francis of AssisiWednesdayNational
2028-10-09Thanksgiving DayMondayNational
2028-11-11Remembrance DaySaturdayNational
2028-12-08Feast of the Immaculate ConceptionFridayNational
2028-12-25Christmas DayMondayNational
2028-12-26Boxing DayTuesdayNational

Automate Newfoundland and Labrador 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=CA&year=2028" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Newfoundland and Labrador

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=CA&year=2028",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Newfoundland and Labrador (ISO code: NL)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("NL")
);
Public Holidays in Newfoundland and Labrador, Canada 2028 — Complete List