Catalog/data-time-in

Data

Current local time in any place API

Geocode a place name (OpenStreetMap) to coordinates, resolve its IANA timezone (Open-Meteo), and return the current local time, UTC offset, timezone abbreviation, and whether it is observing DST right now. The full fuzzy-name to coordinates to timezone to live-clock join is something an LLM cannot do (no clock, no tz database). Answers 'what time is it in Tokyo', 'current time in Paris', 'is it DST in Sydney now', 'UTC offset for Mumbai'.

Price$0.01per request
MethodPOST
Route/v1/data/time-in
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datatimetimezonelocal-timecurrent-timedstutc-offsetworld-clock
API URLhttps://x402.hexl.dev/v1/data/time-in
Integration docs
Example request
{
  "place": "Tokyo"
}
Example response
{
  "place": "Tokyo, Japan",
  "latitude": 35.6829,
  "longitude": 139.7593,
  "timezone": "Asia/Tokyo",
  "abbreviation": "GMT+9",
  "weekday": "Wednesday",
  "localTime": "2026-06-03T21:00:00",
  "localTimeFriendly": "Wednesday, 2026-06-03 21:00:00",
  "utcOffset": "+09:00",
  "utcOffsetMinutes": 540,
  "observesDst": false,
  "isDst": false,
  "standardOffsetMinutes": 540,
  "utc": "2026-06-03T12:00:00.000Z"
}
Input schema
{
  "type": "object",
  "required": [
    "place"
  ],
  "properties": {
    "place": {
      "type": "string",
      "examples": [
        "Tokyo",
        "New York",
        "Paris, France"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}