← Världstid

Aktuell tid per tidszon

GET /time/current

Get the aktuell datum and time för valfri IANA timezone. Returnerar year, month, day, hour, minute, sekunder, formatted datumtime, day of week, and DST status.

Parametrar

tidszon obligatorisk

IANA timezone (e.g. Europe/Oslo, America/New_York, Asia/Tokyo)

Exempelförfrågningar

Grundläggande användning
curl "https://nordapi.ee/api/v1/time/current?timezone=Europe/Oslo"

Livesvar

{
  "data": {
    "date": "04/05/2026",
    "dateTime": "2026-04-05T22:41:43.6109274",
    "day": 5,
    "dayOfWeek": "Sunday",
    "dstActive": true,
    "hour": 22,
    "minute": 41,
    "month": 4,
    "seconds": 43,
    "time": "22:41",
    "timeZone": "Europe/Oslo",
    "year": 2026
  },
  "success": true
}