Where an IP is from, country, ASN, network.
Look up where an IP is coming from. Country, continent, ASN, and network name come back in the core response. IPv4 and IPv6.
On paid plans, ?deep=true adds datacenter, relay, and Tor flags, plus state and city where the network operator publishes them.
curl "https://api.parseapi.com/ip/8.8.8.8" \
-H "X-API-Key: YOUR_API_KEY"{
"ip": "8.8.8.8",
"country": "US",
"country_name": "United States",
"continent": "NA",
"asn": "AS15169",
"asn_name": "Google LLC"
}Response fields
GET /ip returns the IP that made the request. No key needed.
curl "https://api.parseapi.com/ip"{
"ip": "203.0.113.10",
"country": "US",
"country_name": "United States",
"continent": "NA",
"asn": "AS15169",
"asn_name": "Google LLC"
}Paid. State and city come from operator-published geofeeds, empty when not published. Flags come straight from official provider publications: cloud and CDN address space (datacenter), Apple Private Relay egress (relay), and known Tor exits (tor), refreshed daily.
curl "https://api.parseapi.com/ip/52.94.76.10?deep=true" \
-H "X-API-Key: YOUR_API_KEY"{
"ip": "52.94.76.10",
"country": "US",
"country_name": "United States",
"continent": "NA",
"asn": "AS16509",
"asn_name": "Amazon.com, Inc.",
"deep": {
"state": "OR",
"city": "Boardman",
"registry": "arin",
"datacenter": true,
"relay": false,
"tor": false,
"provider": "aws"
}
}Deep fields
Questions? Email