get_privacy_info
Detect if an IP address is associated with privacy services like VPNs, proxies, Tor, relays, or hosting providers to assess connection authenticity.
Instructions
Detect privacy services (VPN, proxy, Tor, etc.) for an IP address.
Args: ip: IP address to check
Returns: Privacy detection results including VPN, proxy, Tor, relay, and hosting status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}