โ† All API Products

World Time API

4 endpoints for current time in any timezone worldwide, time lookup by IP address, a full list of IANA timezones, and timezone conversion between any two zones. Powered by timeapi.io. Useful for scheduling apps, world clock widgets, and distributed team tools.

FREE 4 endpoints 100 req/hour
Base URL: https://nordapi.ee/api/v1

Current Time by Timezone

GET /time/current
Details โ†’

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

Parameters
timezone required
IANA timezone (e.g. Europe/Oslo, America/New_York, Asia/Tokyo)
curl "https://nordapi.ee/api/v1/time/current?timezone=Europe/Oslo"

Current Time by IP

GET /time/ip/:ip
Details โ†’

Get the current time for the location associated with an IP address.

curl https://nordapi.ee/api/v1/time/ip/8.8.8.8

List All Timezones

GET /time/zones
Details โ†’

Get a complete list of all available IANA timezones.

curl https://nordapi.ee/api/v1/time/zones

Convert Between Timezones

GET /time/convert
Details โ†’

Convert a datetime from one timezone to another.

Parameters
from required
Source timezone (e.g. Europe/Oslo)
to required
Target timezone (e.g. America/New_York)
datetime required
DateTime to convert (e.g. 2026-03-30 12:00:00)
curl "https://nordapi.ee/api/v1/time/convert?from=Europe/Oslo&to=America/New_York&datetime=2026-03-30+12:00:00"