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=timezoneResponse 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
| Parameter | Type | Description |
|---|---|---|
time_zone | string | IANA timezone identifier (e.g. Asia/Kathmandu). |
abbr | string | Timezone abbreviation or offset name (e.g. +0545). |
offset | number | Offset from UTC in seconds (e.g. 20700). |
is_dst | boolean | Indicates if daylight saving time is active. |
utc | string | UTC offset in ±HH:MM format (e.g. +05:45). |
current_time | string | Current local time at the IP location (ISO 8601 format). |