Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2030

24 total holidays17 national7 regional

2030 Holiday Calendar — Newfoundland and Labrador

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

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