← Geo & Wetter

Zeitzonen-Suche

GET /geo/timezone

Nachschlagen von timezone information by geographic coordinates oder timezone name. Liefert die timezone identifier (e.g., Europe/Oslo), current local time, UTC offset, und DST status. Nützlich für scheduling apps that need to display times in a user's local timezone, meeting planners across time zones, und any feature that converts between UTC und local time.

Parameter

lat optional

Latitude

lon optional

Longitude

zone optional

Timezone name

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
Timezone for Oslo by coordinates
curl "https://nordapi.ee/api/v1/geo/timezone?lat=59.9&lon=10.7"
Timezone by name
curl "https://nordapi.ee/api/v1/geo/timezone?zone=America/New_York"
Timezone for Tokyo by coordinates
curl "https://nordapi.ee/api/v1/geo/timezone?lat=35.68&lon=139.69"

Live-Antwort

{
  "data": {
    "date": "04/05/2026",
    "datetime": "2026-04-05T19:21:26.3265649",
    "day_of_week": "Sunday",
    "time": "19:21",
    "timezone": "Europe/Oslo",
    "utc_offset": null
  },
  "success": true
}