get_ip_region
Retrieve the geographic region or state associated with an IP address to determine location-based information for network analysis or geolocation purposes.
Instructions
Get just the region/state for an IP address.
Args: ip: IP address to lookup. If None, returns current region.
Returns: Region or state name.
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"
}