Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2025

24 total holidays17 national7 regional

2025 Holiday Calendar — Newfoundland and Labrador

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

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