IPGeolocation
IP → location, timezone, currency, and security
IPGeolocation.io resolves IPs to city, country, timezone, and threat signals. Free API key with daily lookup limits for developers.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass.
GET https://api.ipgeolocation.io/ipgeo?apiKey=&ip=8.8.8.8
{
"message": "Provided API key is not valid. Contact technical support for assistance at support@ipgeolocation.io"
}curl "https://api.ipgeolocation.io/ipgeo?apiKey=&ip=8.8.8.8"const res = await fetch("https://api.ipgeolocation.io/ipgeo?apiKey=&ip=8.8.8.8");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.ipgeolocation.io/ipgeo?apiKey=&ip=8.8.8.8")
print(res.json())/ipgeo?apiKey=&ip=8.8.8.8PROBEDIP → location, timezone, currency, and security
/ipgeo?limit=5Ipgeo — documented GET route.
/ipgeo?page=1Ipgeo — documented GET route.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
IPGeolocation: common questions
Is IPGeolocation free to use?
Yes — IPGeolocation is a free developer tools API. Free tier: Free — 1000 requests/day. Whether the free tier allows commercial use is unclear — check the provider docs.
Does IPGeolocation need an API key?
Yes — IPGeolocation needs a free API key, which you pass on each request. Rate limits: 1000 requests/day on free plan.
Can I call IPGeolocation from the browser?
Yes — IPGeolocation 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 IPGeolocation up right now?
As of our last scheduled check, IPGeolocation is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.