New Zealand flag

Public Holidays in Hawke's Bay, New Zealand 2029

14 total holidays12 national2 regional

2029 Holiday Calendar — Hawke's Bay

DateHolidayDayScope
2029-01-01New Year's DayMondayNational
2029-01-02Day after New Year's DayTuesdayNational
2029-01-29Auckland Anniversary DayMondayHawke's Bay
2029-02-06Waitangi DayTuesdayNational
2029-03-30Good FridayFridayNational
2029-04-01Easter SundaySundayNational
2029-04-02Easter MondayMondayNational
2029-04-25ANZAC DayWednesdayNational
2029-06-04King's BirthdayMondayNational
2029-07-06MatarikiFridayNational
2029-10-19Hawke's Bay Anniversary DayFridayHawke's Bay
2029-10-22Labour DayMondayNational
2029-12-25Christmas DayTuesdayNational
2029-12-26Boxing DayWednesdayNational

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