New Zealand flag

Public Holidays in Bay of Plenty, New Zealand 2023

14 total holidays13 national1 regional

2023 Holiday Calendar — Bay of Plenty

DateHolidayDayScope
2023-01-01New Year's DaySundayNational
2023-01-02Day after New Year's DayMondayNational
2023-01-03New Year's DayTuesdayNational
2023-01-30Auckland Anniversary DayMondayBay of Plenty
2023-02-06Waitangi DayMondayNational
2023-04-07Good FridayFridayNational
2023-04-09Easter SundaySundayNational
2023-04-10Easter MondayMondayNational
2023-04-25ANZAC DayTuesdayNational
2023-06-05King's BirthdayMondayNational
2023-07-14MatarikiFridayNational
2023-10-23Labour DayMondayNational
2023-12-25Christmas DayMondayNational
2023-12-26Boxing DayTuesdayNational

Automate Bay of Plenty 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=NZ&year=2023" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Bay of Plenty

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=NZ&year=2023",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Bay of Plenty (ISO code: BOP)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("BOP")
);
Public Holidays in Bay of Plenty, New Zealand 2023 — Complete List