IP lookup, geolocation & VPN detection
Comprehensive IP intelligence for security, personalization, and compliance. Accurate geolocation, VPN/proxy detection, and ISP data.
Get location data from IP addresses. Country, city, timezone, and coordinates.
GET /api/v1/ip/lookup/8.8.8.8
// Response
{ "ip": "8.8.8.8",
"country": "US",
"city": "Mountain View",
"region": "California",
"latitude": 37.386,
"longitude": -122.084,
"timezone": "America/Los_Angeles" }
Detect VPNs, proxies, Tor nodes, and datacenter IPs. Identify users hiding their location.
GET /api/v1/ip/vpn/1.2.3.4
// Response
{ "ip": "1.2.3.4",
"is_vpn": true,
"is_proxy": false,
"is_tor": false,
"is_datacenter": true,
"vpn_provider": "NordVPN" }
Check IP reputation against threat databases. Identify malicious IPs and abuse history.
GET /api/v1/ip/reputation/1.2.3.4
// Response
{ "ip": "1.2.3.4",
"risk_score": 85,
"threat_types": ["spam", "botnet"],
"blocklists": 3,
"last_reported": "2024-01-15" }
Get ASN and ISP information for IP addresses. Identify hosting providers and networks.
GET /api/v1/ip/asn/8.8.8.8
// Response
{ "ip": "8.8.8.8",
"asn": 15169,
"organization": "Google LLC",
"isp": "Google",
"connection_type": "corporate" }
Get your API key and start looking up IPs in minutes.