New Zealand flag

Public Holidays in Hawke's Bay, New Zealand 2023

15 total holidays13 national2 regional

2023 Holiday Calendar — Hawke's Bay

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 DayMondayHawke's Bay
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-20Hawke's Bay Anniversary DayFridayHawke's Bay
2023-10-23Labour DayMondayNational
2023-12-25Christmas DayMondayNational
2023-12-26Boxing DayTuesdayNational

Automate Hawke's Bay 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 Hawke's Bay

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 Hawke's Bay (ISO code: HKB)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("HKB")
);
Public Holidays in Hawke's Bay, New Zealand 2023 — Complete List