← Maailman aika

Nykyinen aika aikavyöhykkeen mukaan

GET /time/current

Hae the current date and time for any IANA timezone. Palauttaa year, month, day, hour, minute, seconds, formatted datetime, day of week, and DST status.

Parametrit

aikavyöhyke pakollinen

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

Esimerkkipyynnöt

Peruskäyttö
curl "https://nordapi.ee/api/v1/time/current?timezone=Europe/Oslo"

Reaaliaikainen vastaus

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