IANA tz database · zone identifier

America/Tijuana

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

UTC-07:00Abbreviation PDTObserves daylight saving
Time in America/Tijuana☀ Daylight
15:57:14
Wednesday, July 15, 2026
Offset
UTC-07:00
Abbreviation
PDT
DST
Active

Current offset

UTC-07:00

standard UTC-08:00 · daylight UTC-07:00

Abbreviation

PDT

the daylight-saving form

DST behaviour

Observes

changes clocks twice a year

Country

🇲🇽 Mexico

ISO 3166: MX · view country page →

Using this identifier

The string to put in your code.

America/Tijuana 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 PDT or -07:00 — abbreviations are ambiguous and fixed offsets can't follow rule changes.

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

Offset & DST behaviour

Two offsets,
every year.

America/Tijuana alternates between PST (UTC-08:00) and PDT (UTC-07:00). Right now it is on PDT; clocks fall back on 1 November 2026.

The year at a glance

PST · UTC-08:00PDT · UTC-07:00PST · UTC-08:008 Mar · +1h1 Nov · −1h Jan 2026 Dec

Technical record

The database entry, in full.

source: IANA tz database

IdentifierAmerica/Tijuana
ISO country codeMX🇲🇽 Mexico
Reference coordinates32.53°N, 117.02°Wtz database reference point
Standard offsetUTC-08:00abbreviation PST
Daylight offsetUTC-07:00abbreviation PDT

Where it applies

One of Mexico's 12 zones.

Looking for travel-friendly info? See Tijuana or Pacific 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 America/Tijuana?
America/Tijuana is currently UTC-07:00 (PDT). It alternates between UTC-08:00 in winter and UTC-07:00 in summer.
Does America/Tijuana observe daylight saving time?
Yes. Clocks fall back at the next transition on 1 November 2026, as they do twice every year.
Which country uses America/Tijuana?
Mexico. It is one of 12 IANA zones covering the country.
Is America/Tijuana the same as PST?
America/Tijuana is one of the IANA zones that keeps Pacific Standard Time (PST). Use America/Tijuana in software — PST 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=America/Tijuana
{
"iana": "America/Tijuana",
"utc_offset": "-07:00",
"abbreviation": "PDT",
"observes_dst": true,
"country": "MX"
}