v1

latestOpenAPI 3.1.02026-07-26294215839.4 KB
Account Information
Public API

Get timezone by ZIP code

Retrieves the timezone for a US ZIP code. Returns the same timezone resource shape used by the list endpoint. Only US ZIP codes are supported; valid 5-digit ZIPs that are not present in our reference data return a 404.

OAuth Scopes: meta

get/api/v1/meta/timezones/by-zip/{zip}

Path parameters

zipstring required
Example:84604

A 5-digit US ZIP code.

Response

The timezone resource

idstring

The timezone ID.

gmtOffsetstring

The GMT offset label (e.g. "(GMT-07:00)").

namestring

The display name of the timezone.

utcNamestring

The IANA/UTC timezone identifier.

Example response

{
  "id": "1",
  "gmtOffset": "(GMT-07:00)",
  "name": "Mountain Time",
  "utcName": "America/Denver"
}