Home / VAT Rates / New Zealand

New Zealand GST Rate 2026

New Zealand (New Zealand / Aotearoa) levies GST as GST (Goods and Services Tax). The standard rate is 15%, applied to most goods and services. New Zealand applies a single flat rate with no reduced rates.

Rate update

New Zealand's GST is a flat 15% with no reduced rates. Financial services, residential rent, and donated goods sold by non-profits are GST-exempt. Exported goods are zero-rated (0%).

Current rates — 2026

TypeRateApplies to
Standard15%Most goods and services
Zero-rated0%Exports, land transactions between GST-registered parties, going-concern business sales

Registration and filing

Registration thresholdNZD 60,000Turnover in any 12-month period
Tax authorityInland Revenue (Te Tari Taake)
Filing frequencyTwo-monthly returns by default; monthly or six-monthly options

Access rates via API

The TaxID API returns current VAT and GST rates for 200+ countries and territories. Use the /api/v1/rates/NZ endpoint to get New Zealand data programmatically. Responses are cached for 24 hours.

bash
curl http://localhost:3000/api/v1/rates/NZ
# No authentication required for rate lookups

# Response:
# { "country_code": "NZ", "tax_type": "gst",
#   "standard_rate": 15, "reduced_rates": [],
#   "currency": "NZD", "last_updated": "2026-01-01" }

Applying the correct rate in code

For B2B sales to New Zealand, validate the customer's GST Number first — a verified registration is typically required for correct invoicing and zero-rated exports. For B2C, charge the New Zealand GST rate where registration rules require it.

Node.js
// 1. Validate the customer's New Zealand tax ID
const check = await fetch(
  'http://localhost:3000/api/v1/validate/NZ/CUSTOMER_TAX_ID',
  { headers: { Authorization: 'Bearer YOUR_API_KEY' } }
).then(r => r.json());

// 2. Fetch current New Zealand GST rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/NZ').then(r => r.json());
// → { standard_rate: 15, reduced_rates: [] }

// 3. Apply the correct treatment for your supply
applyRate(check.valid && isB2BExport ? 0 : rates.standard_rate);

About New Zealand GST

New Zealand's GST is the textbook "pure" consumption tax cited in tax-policy literature worldwide: 15% on virtually everything, including food and government charges, with almost no exemptions or reduced rates. That breadth lets it collect more revenue per rate point than nearly any other VAT/GST. New Zealand was also an early mover on taxing the digital economy, capturing foreign digital services in 2016 and low-value imported goods in 2019.

GST in New Zealand is administered by the Inland Revenue (Te Tari Taake). Before applying any zero-rate or exemption to a New Zealand business customer, validate their registration first.

Sources: PwC Worldwide Tax Summaries · Inland Revenue — GST (accessed Jun 2026)

Rate history

Frequently asked questions

What is the GST rate in New Zealand in 2026?

A flat 15% on nearly all goods and services — including food, which most countries exempt or reduce.

Why doesn't New Zealand exempt food from GST?

Deliberate design: a single broad rate with no carve-outs maximises simplicity and revenue efficiency, with low-income support delivered through transfers instead.

Validate New Zealand GST numbers Get free API key

Related concepts and guides:

VAT & GST rates in other Oceanian countries

Australia (10%)Austria (20%)Belgium (21%)Bulgaria (20%)Cyprus (19%)All countries →