IP Reputation API
Check IP address reputation
Returns a composite reputation score and per-signal breakdown for any IPv4 or IPv6 address.
Signals included in the score:
- Proxy detection (HTTP/HTTPS/SOCKS proxies)
- VPN detection (commercial and self-hosted endpoints)
- Tor node membership (live Tor consensus data)
- Datacenter classification (AWS, GCP, Azure, and other hosting providers)
- Spam/abuse history (threat intelligence feeds)
- Suspicious activity patterns (behavioural anomalies)
Response time: Typically < 200 ms for cached results, < 1 s for new lookups.
get/api/v1/ip-reputation/{ip}
Path parameters
ipstring required
Target IP address. Supports IPv4 (e.g. 203.0.113.1) and IPv6 (e.g. 2001:db8::1). Private ranges return limited analysis.
Response
Reputation score calculated successfully
Example response
{
"score": 0.675,
"risk_level": "HIGH",
"ip": "203.0.113.195",
"email": "user@example.com",
"factors": {
"ip_factors": {
"is_proxy": false,
"is_tor_node": false,
"is_spam": true,
"is_vpn": false,
"is_datacenter": true,
"risk_contribution": 0.15
},
"email_factors": {
"is_disposable": false,
"is_valid_syntax": true,
"risk_contribution": 0
}
}
}