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.
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
Questions? Email