IP Geolocation & Security API
Get comprehensive IP intelligence for specific address
Performs detailed analysis of a specific IP address providing geolocation, security assessment, and network intelligence.
Geolocation Analysis:
- Country, region, and city identification
- Latitude/longitude coordinates with accuracy indicators
- Postal/ZIP code when available
- ISP and organization details
- Connection type classification
Security Intelligence:
- Real-time threat assessment from 50+ feeds
- VPN and proxy detection with confidence scoring
- Tor network node identification
- Spam source and malware C&C detection
- Datacenter and hosting classification
Timezone Intelligence:
- IANA timezone identification
- Current local time calculation
- Daylight saving time detection
- UTC offset determination
Performance: Sub-second response with global CDN caching Accuracy: 99.8% country, 90%+ city-level precision
get/api/v1/ip/{ip}
Path parameters
ipstring required
IP address for comprehensive intelligence analysis.
Supported Formats:
- IPv4: Standard dotted decimal (e.g., 203.0.113.195)
- IPv6: Full or compressed format (e.g., 2001:db8::1)
Limitations:
- Private ranges (RFC 1918) return limited geolocation data
- Reserved ranges (RFC 5735/4291) may return partial information
- Localhost (127.x.x.x, ::1) returns minimal data
Performance Notes:
- Cached results: < 50ms response time
- Fresh lookups: < 500ms response time
- Global POPs for reduced latency
Examples:
- Public IPv4: 8.8.8.8, 1.1.1.1
- Public IPv6: 2001:4860:4860::8888
- Corporate: 203.0.113.195
Response
Complete IP intelligence analysis with geolocation and security data
Example response
{
"ip": "203.0.113.195",
"isp": "Comcast Cable Communications",
"asn": "AS7922",
"suspicious_factors": {
"is_proxy": false,
"is_tor_node": false,
"is_spam": false,
"is_crawler": false,
"is_datacenter": true,
"is_vpn": false,
"is_threat": false
},
"location": {
"country": "United States",
"country_code": "US",
"city": "San Francisco",
"latitude": 37.7749,
"longitude": -122.4194,
"zip": "94105",
"timezone": "America/Los_Angeles",
"local_time": "2023-06-21T14:30:00-07:00",
"local_time_unix": 1687385400,
"is_daylight_savings": true
}
}