GET /timezone?lat={lat}&lon={lon} · /{timezone}?to=
Pass a point, a zone, or two zones. Get the time in the other.
You have a time in one zone. Get it in another.
Try it
timezone
IANA timezone id. Nautical Etc/GMT zone over open ocean
name
Friendly / generic name (e.g. Eastern Time)
abbreviation
Short zone name (EDT, EST, …)
offset
UTC offset as ±HH:MM
dst
Whether daylight saving is in effect at the reference time
next_dst
Next offset transition after the reference time, or null
at
With ?to= only: the resolved wall time in the from zone, ISO with its UTC offset
to
With ?to= only: the other zone evaluated at the same instant
to.at
The converted time, ISO with its UTC offset
1
lat and lon. The IANA zone at that spot, plus offset and DST.
2
America/New_York when you already know the zone.
3
Add to= for another zone, at= for any moment. DST resolved on both sides.
A point, a zone, or two zones. Every plan.
Pass lat and lon and get the IANA zone at that point, the offset, abbreviation, whether daylight saving is on, a readable name, and the next clock change. Open ocean answers nautical time, the Etc/GMT zone for its longitude band. You can also pass America/New_York or UTC when you already have the id. Add ?at= to check any moment, not just now.
Convert with ?to=: /timezone/America/New_York?to=Asia/Tokyo&at=2026-08-29T15:00 answers the Tokyo wall time, DST resolved on both sides. Without a UTC offset, at reads as local time in the from zone, the way people actually ask.
RESPONSE
$ curl "https://api.parseapi.com/timezone?lat=40.7128&lon=-74.006" \ -H "X-API-Key: YOUR_API_KEY" // 200 · ~35ms US · ~97ms worldwide { "latitude": 40.7128, "longitude": -74.006, "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
QUESTIONS
SPEED
US
61ms
EU
66ms
APAC
73ms
LatAm
80ms
ME
116ms
IANA zones. Land and ocean.
Get the zone for a ZIP with timezone by ZIP, or convert a time between two zones with the zone converter.