the problem\nfiguring out the physical path and geolocation of network traffic often involves manually querying multiple APIs and correlating data, which takes time and can be unreliable. it becomes a bottleneck for security audits, troubleshooting, and performance optimization.
the solution\nnetwork-route-mapper simplifies this process by querying several free IP geolocation and ASN APIs to infer the actual physical routing paths, ASN hops, and geolocation info. it then provides a clear way to visualize or analyze network topology with a simple API call.
curl example:
bash
curl https://network-route-mapper.apimesh.xyz/check?ip=8.8.8.8
sample output:
{
"ip": "8.8.8.8",
"asn_hops": ["AS15169", "AS16509"],
"geolocation": {"country": "US", "city": "Mountain View"},
"path": [
{"ip": "8.8.8.8", "location": "Mountain View, US"},
{"ip": "1.2.3.4", "location": "San Francisco, US"}
],
"visualization_url": "https://someviz.com/route/abc123"
}
Top comments (0)