IP Data API
IP Data API — ipapi.is provides a comprehensive API for obtaining det…
IP Data API exposes ipapi.is provides a comprehensive API for obtaining detailed information on IP addresses, including geolocation, hosting provider data, and detection of VPNs, proxies, and abusive behavior. The API is designed for both developers and businesses, offering a user-friendly interface with a generous free tier for basic usage. We verified a keyless GET endpoint returning JSON (Geocoding). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.ipapi.is/?q=32.5.140.2
{
"ip": "32.5.140.2",
"rir": "ARIN",
"is_bogon": false,
"is_mobile": false,
"is_satellite": false,
"is_crawler": false,
"is_datacenter": false,
"is_tor": false
}curl "https://api.ipapi.is/?q=32.5.140.2"const res = await fetch("https://api.ipapi.is/?q=32.5.140.2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.ipapi.is/?q=32.5.140.2")
print(res.json())/?q=32.5.140.2PROBEDIP Data API — ipapi.is provides a comprehensive API for obtaining det…
/?limit=5IP Data API root or index route.
/?page=1IP Data API root or index route.
/htmlHtml — documented GET route.
/toonToon — documented GET route.
/textText — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
IP Data API: common questions
Is IP Data API free to use?
Yes — IP Data API is a free geo & maps API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does IP Data API need an API key?
No — IP Data API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call IP Data API from the browser?
Yes — IP Data API 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 IP Data API up right now?
IP Data API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.