GeoNet API
GeoNet API — The GeoNet API allows developers to run common network …
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.
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://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
}
]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())/api/geoping/yahoo.comPROBEDGeoNet API — The GeoNet API allows developers to run common network …
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/ping/{ip}Ping
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.
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.