IPinfo
Geolocation and network details for any IP address
IPinfo returns location and network data for an IP. Hitting /json without a token resolves the caller's own address to city, region, country, coordinates, ASN/org, and timezone. Keyless requests work but are rate-limited; a free token unlocks higher volume.
GET https://ipinfo.io/json
{
"ip": "46.1.3.138",
"city": "Istanbul",
"region": "Istanbul",
"country": "TR",
"loc": "41.0138,28.9497",
"org": "AS34296 Millenicom Telekomunikasyon Hizmetleri Anonim Sirketi",
"timezone": "Europe/Istanbul"
}curl "https://ipinfo.io/json"const res = await fetch("https://ipinfo.io/json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://ipinfo.io/json")
print(res.json())/jsonPROBEDGeolocation and network details for any IP address
/json?limit=5Paginated variant with limit parameter.
/liteLite — documented GET route.
/lookupLookup — documented GET route.
/countryCountry — documented GET route.
/asnAsn — 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.
IPinfo: common questions
Is IPinfo free to use?
Yes — IPinfo is a free developer tools API. Free tier: Keyless /json works with limits; free token recommended (IPinfo Lite offers higher/unlimited access with a token). Whether the free tier allows commercial use is unclear — check the provider docs.
Does IPinfo need an API key?
No — IPinfo needs no API key or signup. You can call it straight away; rate limits still apply (Keyless/unauthenticated access is rate-limited; numeric caps not stated on the developers page).
Can I call IPinfo from the browser?
Yes — IPinfo 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 IPinfo up right now?
As of our last scheduled check, IPinfo is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.