HackMyIP
Keyless IP geolocation, VPN scoring and breach checks
A no-signup toolkit API bundling IP geolocation, ISP and ASN data, VPN/proxy scoring, email breach lookups, and DNS/WHOIS queries. The /ip endpoint profiles the caller's address with location, network and privacy details in one JSON payload. Every endpoint is keyless and CORS-enabled.
GET https://hackmyip.com/api/ip
{
"success": true,
"data": {
"ip": "46.1.3.138",
"location": {
"city": "Istanbul",
"country": "TR",
"country_name": "Türkiye"
},
"network": {
"asn": 34296,
"connection_type": "HTTP/2"
},
"privacy": {
"type": "residential",
"score": 85
}
}
}curl "https://hackmyip.com/api/ip"const res = await fetch("https://hackmyip.com/api/ip");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://hackmyip.com/api/ip")
print(res.json())/ipPROBEDKeyless IP geolocation, VPN scoring and breach checks
/ip?limit=5Paginated variant with limit parameter.
/api/ipIp — documented GET route.
/api/lookupLookup — documented GET route.
/api/breachBreach — documented GET route.
/api/scoreScore — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
HackMyIP: common questions
Is HackMyIP free to use?
Yes — HackMyIP is a free geo & maps API. Free tier: Completely free — no API key, no signup. Commercial use is allowed on the free tier.
Does HackMyIP need an API key?
No — HackMyIP needs no API key or signup. You can call it straight away; rate limits still apply (100 req/window).
Can I call HackMyIP from the browser?
Yes — HackMyIP returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is HackMyIP up right now?
As of our last scheduled check, HackMyIP is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.