get_ip_timezone
Retrieve the IANA timezone string for any IP address to determine geographic location timezone information for network analysis or geolocation purposes.
Instructions
Get just the timezone for an IP address.
Args: ip: IP address to lookup. If None, returns current timezone.
Returns: IANA timezone string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | No |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ip"
}
},
"type": "object"
}