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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
As of our last scheduled check, IP Data API is healthy with 99.02% uptime over 90 days and a 124 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.