lookup_ip
Geolocate an IPv4/IPv6 address. Returns country, city, ISP, coords. Params: ip (str): The IP address to geolocate. Returns: dict: Geolocation data or error message.
Parameters1
| ip | string | required |
Raw schema
{
"type": "object",
"properties": {
"ip": {
"title": "Ip",
"type": "string"
}
},
"required": [
"ip"
],
"title": "lookup_ipArguments"
}