get_ip_location
Retrieve latitude and longitude coordinates for any IP address to determine its geographic location. When no IP is specified, returns the coordinates of your current location.
Instructions
Get just the coordinates for an IP address.
Args: ip: IP address to lookup. If None, returns current location.
Returns: Latitude,longitude coordinates.
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"
}