IANA tz database · zone identifier

Pacific/Auckland

The IANA tz database identifier for New Zealand Standard Time in New Zealand. Store this string — not the abbreviation, not the offset — and your timestamps stay correct forever.

UTC+12:00Abbreviation NZSTObserves daylight saving
Time in Pacific/Auckland☀ Daylight
10:56:41
Thursday, July 16, 2026
Offset
UTC+12:00
Abbreviation
NZST
DST
Observed

Current offset

UTC+12:00

standard UTC+12:00 · daylight UTC+13:00

Abbreviation

NZST

the standard-time form

DST behaviour

Observes

changes clocks twice a year

Country

🇳🇿 New Zealand

ISO 3166: NZ · view country page →

Using this identifier

The string to put in your code.

Pacific/Auckland is the identifier to use in code and config for this region. Every modern language, database, and OS resolves it through the same tz database, so the examples here behave identically everywhere.

Avoid storing NZST or +12:00 — abbreviations are ambiguous and fixed offsets can't follow rule changes.

// format a date in this zone
new Intl.DateTimeFormat('en-US', {
timeZone: 'Pacific/Auckland',
dateStyle: 'full', timeStyle: 'long'
}).format(new Date());

Offset & DST behaviour

Two offsets,
every year.

Pacific/Auckland alternates between NZST (UTC+12:00) and NZDT (UTC+13:00). Right now it is on NZST; clocks spring forward on 27 September 2026.

The year at a glance

NZDT · UTC+13:00NZST · UTC+12:00NZDT · UTC+13:005 Apr · −1h27 Sept · +1h Jan 2026 Dec

Technical record

The database entry, in full.

source: IANA tz database

IdentifierPacific/Auckland
ISO country codeNZ🇳🇿 New Zealand
Reference coordinates36.87°S, 174.77°Etz database reference point
Standard offsetUTC+12:00abbreviation NZST
Daylight offsetUTC+13:00abbreviation NZDT

Where it applies

One of New Zealand's 2 zones.

Looking for travel-friendly info? See Auckland or New Zealand Standard Time.

Related identifiers

Nearby in the database.

Frequently asked questions

Answers specific to this identifier — generated from the database record. Can't find what you need? Email [email protected].

What UTC offset is Pacific/Auckland?
Pacific/Auckland is currently UTC+12:00 (NZST). It alternates between UTC+12:00 in winter and UTC+13:00 in summer.
Does Pacific/Auckland observe daylight saving time?
Yes. Clocks spring forward at the next transition on 27 September 2026, as they do twice every year.
Which country uses Pacific/Auckland?
New Zealand. It is one of 2 IANA zones covering the country.
Is Pacific/Auckland the same as NZST?
Pacific/Auckland is one of the IANA zones that keeps New Zealand Standard Time (NZST). Use Pacific/Auckland in software — NZST is a human-friendly label, not a valid identifier.

Free · Developer API

This zone, as JSON.

Everything on this page — offset, abbreviation, DST rules, coordinates — from one endpoint, always current with the latest tzdb release.

GET /v1/timezones Live

countries, cities, convert, DST transitions coming next.

Get your free API key →
// this identifier, resolved live
GET /v1/timezones?iana=Pacific/Auckland
{
"iana": "Pacific/Auckland",
"utc_offset": "+12:00",
"abbreviation": "NZST",
"observes_dst": true,
"country": "NZ"
}