GeoNet API

GeoNet API — The GeoNet API allows developers to run common network …

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

GeoNet API exposes the GeoNet API allows developers to run common network tools from servers located around the world, facilitating the identification of network behavior based on user region. It includes functionalities like GeoPing for latency measurement and GeoDNS for DNS record lookups. We verified a keyless GET endpoint returning JSON (Development). 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://geonet.shodan.io/api/geoping/yahoo.com

[
  {
    "ip": "98.137.11.164",
    "is_alive": true,
    "min_rtt": 69.101,
    "avg_rtt": 69.505,
    "max_rtt": 70.065,
    "rtts": [
      70.06549835205078,
      69.10133361816406
    ],
    "packets_sent": 3,
    "packets_received": 3
  },
  {
    "ip": "74.6.231.20",
    "is_alive": true,
    "min_rtt": 109.243,
    "avg_rtt": 109.49,
    "max_rtt": 109.955,
    "rtts": [
      109.9553108215332,
      109.27081108093262
    ],
    "packets_sent": 3,
    "packets_received": 3
  }
]
Call itcurl · fetch · python
curl "https://geonet.shodan.io/api/geoping/yahoo.com"
const res = await fetch("https://geonet.shodan.io/api/geoping/yahoo.com");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://geonet.shodan.io/api/geoping/yahoo.com")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /api/geoping/yahoo.com awaits first probe
GET/api/geoping/yahoo.comPROBED

GeoNet API — The GeoNet API allows developers to run common network …

GET/api

Api — documented GET route.

GET/api/1

Api details by ID (example: 1).

GET/api?limit=10

Api — documented GET route.

GET/api/search?q=test

Search by query parameters.

GET/api/ping/{ip}

Ping

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.

GeoNet API: common questions

Is GeoNet API free to use?

Yes — GeoNet API is a free developer tools API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does GeoNet API need an API key?

No — GeoNet API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call GeoNet API from the browser?

Yes — GeoNet 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 GeoNet API up right now?

GeoNet 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.