Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2029

25 total holidays18 national7 regional

2029 Holiday Calendar — Newfoundland and Labrador

DateHolidayDayScope
2029-01-01New Year's DayMondayNational
2029-02-13Carnival / Shrove Tuesday / Pancake DayTuesdayNational
2029-03-19St. Patrick's DayMondayNewfoundland and Labrador
2029-03-25Palm SundaySundayNational
2029-03-29Maundy ThursdayThursdayNational
2029-03-30Good FridayFridayNational
2029-03-31Holy SaturdaySaturdayNational
2029-04-01Easter SundaySundayNewfoundland and Labrador
2029-04-02Easter MondayMondayNational
2029-04-23St. George's DayMondayNewfoundland and Labrador
2029-05-21Victoria DayMondayNational
2029-06-25June HolidayMondayNewfoundland and Labrador
2029-07-01Canada DaySundayNational
2029-07-01Memorial DaySundayNewfoundland and Labrador
2029-07-02Canada DayMondayNational
2029-07-09Orangemen's DayMondayNewfoundland and Labrador
2029-08-01The Royal St John's Regatta (Regatta Day)WednesdayNewfoundland and Labrador
2029-09-03Labour DayMondayNational
2029-09-30National Day for Truth and ReconciliationSundayNational
2029-10-04Feast of St Francis of AssisiThursdayNational
2029-10-08Thanksgiving DayMondayNational
2029-11-11Remembrance DaySundayNational
2029-12-08Feast of the Immaculate ConceptionSaturdayNational
2029-12-25Christmas DayTuesdayNational
2029-12-26Boxing DayWednesdayNational

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