IPinfo

Geolocation and network details for any IP address

🔧 Developer ToolsUNMONITOREDchecked 43 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /json has been probed
GET/jsonPROBED

Geolocation and network details for any IP address

GET/json?limit=5

Paginated variant with limit parameter.

GET/lite

Lite — documented GET route.

GET/lookup

Lookup — documented GET route.

GET/country

Country — documented GET route.

GET/asn

Asn — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.