← Docs

Timezone API

An IANA zone, offset, DST, and what's next.

Look up an IANA timezone like America/New_York or UTC. You get id, abbreviation, offset, whether DST is on, a friendly name, and next_dst when a transition exists.

Defaults to now. Pass ?at= with an ISO timestamp for a specific moment. URL-encode / in the path (America%2FNew_York), or use the multi-segment path form.

Lookup

GET
api.parseapi.com/timezone/{timezone}
Offset, abbreviation, DST, name, and next DST. Optional ?at= (ISO)
curl "https://api.parseapi.com/timezone/America%2FNew_York" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "timezone": "America/New_York",
  "name": "Eastern Time",
  "abbreviation": "EDT",
  "offset": "-04:00",
  "offset_minutes": -240,
  "dst": true,
  "next_dst": {
    "at": "2026-11-01T06:00:00.000Z",
    "dst": false,
    "offset": "-05:00",
    "abbreviation": "EST"
  }
}

Response fields

timezone
IANA timezone id
name
Friendly / generic name (e.g. Eastern Time)
abbreviation
Short zone name (EDT, EST, …)
offset
UTC offset as ±HH:MM
offset_minutes
UTC offset in minutes
dst
Whether daylight saving is in effect at the reference time
next_dst
Next offset transition after the reference time, or null

Questions? Email