Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2021

25 total holidays18 national7 regional

2021 Holiday Calendar — Newfoundland and Labrador

DateHolidayDayScope
2021-01-01New Year's DayFridayNational
2021-02-16Carnival / Shrove Tuesday / Pancake DayTuesdayNational
2021-03-15St. Patrick's DayMondayNewfoundland and Labrador
2021-03-28Palm SundaySundayNational
2021-04-01Maundy ThursdayThursdayNational
2021-04-02Good FridayFridayNational
2021-04-03Holy SaturdaySaturdayNational
2021-04-04Easter SundaySundayNewfoundland and Labrador
2021-04-05Easter MondayMondayNational
2021-04-26St. George's DayMondayNewfoundland and Labrador
2021-05-24Victoria DayMondayNational
2021-06-21June HolidayMondayNewfoundland and Labrador
2021-07-01Canada DayThursdayNational
2021-07-01Memorial DayThursdayNewfoundland and Labrador
2021-07-12Orangemen's DayMondayNewfoundland and Labrador
2021-08-04The Royal St John's Regatta (Regatta Day)WednesdayNewfoundland and Labrador
2021-09-06Labour DayMondayNational
2021-09-30National Day for Truth and ReconciliationThursdayNational
2021-10-04Feast of St Francis of AssisiMondayNational
2021-10-11Thanksgiving DayMondayNational
2021-11-11Remembrance DayThursdayNational
2021-12-08Feast of the Immaculate ConceptionWednesdayNational
2021-12-25Christmas DaySaturdayNational
2021-12-26Boxing DaySundayNational
2021-12-27Christmas DayMondayNational

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=2021" \
  -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=2021",
  { 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 2021 — Complete List