IP Data API

IP Data API — ipapi.is provides a comprehensive API for obtaining det…

🗺 Geo & MapsUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /?q=32.5.140.2 awaits first probe
GET/?q=32.5.140.2PROBED

IP Data API — ipapi.is provides a comprehensive API for obtaining det…

GET/?limit=5

IP Data API root or index route.

GET/?page=1

IP Data API root or index route.

GET/html

Html — documented GET route.

GET/toon

Toon — documented GET route.

GET/text

Text — 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

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.