See how comprehensive IP data prevents fraud, boosts conversions, and powers personalized user experiences. Test all enterprise features instantly.
Enter an IPv4 or IPv6 address. Leave empty to use your current IP.
{
"loading": "..."
}Full IP analysis including location detection, ISP information, network details, and geographic data.
Get instant geolocation results with detailed JSON response showing all location and network details.
Test ISP detection, network analysis, timezone information, and location accuracy.
ipThe IP address being looked up.
cityCity geolocation object with coordinates and timezone.
city.nameCity name (e.g., Toronto).
city.latitudeGeographic latitude coordinate.
city.longitudeGeographic longitude coordinate.
city.time_zoneIANA timezone (e.g., America/Toronto).
city.accuracy_radiusLocation accuracy radius in kilometers.
countryCodeISO 3166-1 alpha-2 country code (e.g., CA).
registeredCountryCodeCountry where IP is registered.
asnAutonomous System Number.
asoAutonomous System Organization name.
Join thousands of businesses using IP intelligence to drive measurable growth and security.
# Basic IP lookupcurl -X GET "https://api.ip-info.app/v1-get-ip-details?ip=8.8.8.8"-H "accept: application/json"-H "x-api-key: your-api-key"
// Using fetch APIconst response = await fetch('https://api.ip-info.app/v1-get-ip-details?ip=8.8.8.8',{headers: {'accept': 'application/json','x-api-key': 'your-api-key'}});const result = await response.json();