GET /geo/timezone
Look up timezone information by geographic coordinates or timezone name. Returns the timezone identifier (e.g., Europe/Oslo), current local time, UTC offset, and DST status. Useful for scheduling apps that need to display times in a user's local timezone, meeting planners across time zones, and any feature that converts between UTC and local time.
lat
optional
Latitude
lon
optional
Longitude
zone
optional
Timezone name
| Name | Required | Default | Description |
|---|---|---|---|
lat |
No | - | Latitude |
lon |
No | - | Longitude |
zone |
No | - | Timezone name |
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
curl "https://nordapi.ee/api/v1/geo/timezone?zone=America/New_York"
curl "https://nordapi.ee/api/v1/geo/timezone?lat=35.68&lon=139.69"
{
"data": {
"date": "06/26/2026",
"datetime": "2026-06-26T15:59:14.4434871",
"day_of_week": "Friday",
"time": "15:59",
"timezone": "Europe/Oslo",
"utc_offset": null
},
"success": true
}