Timezone

Get timezone information for any location by geographic coordinates or city name. Returns the IANA timezone identifier, UTC offset, current time, and DST status.

Get API Key

Overview

Use Cases

  • Display local time for a given location
  • Scheduling and calendar applications
  • Travel and logistics platforms
  • Location-aware notifications

Features

Lookup by latitude/longitude or city name
IANA timezone identifiers (e.g. "America/New_York")
DST detection for the current date
UTC offset in standard +HH:MM format
150+ major cities supported for city-based lookup

API Endpoints

Get Timezone

Returns timezone information for the given coordinates or city name. Provide either `city` or both `lat` and `lon`.

GET
https://api.requiems.xyz/v1/places/timezone

Parameters

Name Type Required Description
lat float Optional Latitude of the location (-90 to 90). Required when using coordinate-based lookup.
lon float Optional Longitude of the location (-180 to 180). Required when using coordinate-based lookup.
city string Optional City name for city-based lookup (e.g. 'Tokyo', 'London'). Required when not using coordinates.

Try it out

Live Demo
Request

Latitude of the location (-90 to 90). Required when using coordinate-based lookup.

Longitude of the location (-180 to 180). Required when using coordinate-based lookup.

City name for city-based lookup (e.g. 'Tokyo', 'London'). Required when not using coordinates.

Response Fields

Field Type Description
timezone string IANA timezone identifier (e.g. "Europe/London", "Asia/Tokyo")
offset string UTC offset in +HH:MM or -HH:MM format (e.g. '+05:30', '-05:00')
current_time string Current time in UTC, formatted as RFC 3339 (e.g. "2024-12-15T14:30:00Z")
is_dst boolean Whether the location is currently observing daylight saving time

Code Examples

# Lookup by coordinates
curl "https://api.requiems.xyz/v1/places/timezone?lat=51.5&lon=-0.1" \
  -H "requiems-api-key: YOUR_API_KEY"

# Lookup by city
curl "https://api.requiems.xyz/v1/places/timezone?city=Tokyo" \
  -H "requiems-api-key: YOUR_API_KEY"

Frequently Asked Questions