Canada flag

Public Holidays in Newfoundland and Labrador, Canada 2023

25 total holidays18 national7 regional

2023 Holiday Calendar — Newfoundland and Labrador

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-01-02New Year's DayMondayNational
2023-02-21Carnival / Shrove Tuesday / Pancake DayTuesdayNational
2023-03-20St. Patrick's DayMondayNewfoundland and Labrador
2023-04-02Palm SundaySundayNational
2023-04-06Maundy ThursdayThursdayNational
2023-04-07Good FridayFridayNational
2023-04-08Holy SaturdaySaturdayNational
2023-04-09Easter SundaySundayNewfoundland and Labrador
2023-04-10Easter MondayMondayNational
2023-04-24St. George's DayMondayNewfoundland and Labrador
2023-05-22Victoria DayMondayNational
2023-06-26June HolidayMondayNewfoundland and Labrador
2023-07-01Canada DaySaturdayNational
2023-07-01Memorial DaySaturdayNewfoundland and Labrador
2023-07-10Orangemen's DayMondayNewfoundland and Labrador
2023-08-02The Royal St John's Regatta (Regatta Day)WednesdayNewfoundland and Labrador
2023-09-04Labour DayMondayNational
2023-09-30National Day for Truth and ReconciliationSaturdayNational
2023-10-04Feast of St Francis of AssisiWednesdayNational
2023-10-09Thanksgiving DayMondayNational
2023-11-11Remembrance DaySaturdayNational
2023-12-08Feast of the Immaculate ConceptionFridayNational
2023-12-25Christmas DayMondayNational
2023-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=2023" \
  -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=2023",
  { 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 2023 — Complete List