Skip to content

Timezone Data

This includes the IANA timezone identifier, UTC offset, daylight saving status, and the current local time at the IP’s location.

Timezone data is useful for:

  • Displaying local times in dashboards or apps
  • Personalizing content by user’s local time

Below is an example of the timezone-related fields returned by a lookup.

Request Example

GET https://api.ipwho.org/ip/76.102.11.203?apiKey=sk.xxxx&get=timezone

Response Example

{
"success": true,
"data": {
"timezone": {
"time_zone": "America/Chicago",
"abbr": "CST",
"offset": -21600,
"is_dst": false,
"utc": "-06:00",
"current_time": "2025-11-26T10:53:38-06:00"
}
}
}

Timezone Data Fields

ParameterTypeDescription
time_zonestringIANA timezone identifier (e.g. Asia/Kathmandu).
abbrstringTimezone abbreviation or offset name (e.g. +0545).
offsetnumberOffset from UTC in seconds (e.g. 20700).
is_dstbooleanIndicates if daylight saving time is active.
utcstringUTC offset in ±HH:MM format (e.g. +05:45).
current_timestringCurrent local time at the IP location (ISO 8601 format).