Trace the network path to any domain or IP address and identify network bottlenecks
No traceroute performed yet
Enter a domain or IP and click "Trace Route"
Traceroute is a free online network diagnostic tool that shows the path packets take from our server to a destination host. It displays each hop (router) along the route, along with the response time at each step. This helps identify where network delays or failures occur.
Whether you're troubleshooting slow connections, diagnosing network issues, or understanding internet routing, traceroute provides valuable insights into your network path.
See every router your data passes through on its way to the destination.
Measure response time at each hop to identify where delays occur.
Pinpoint network congestion and routing problems along the path.
Understand the geographic path your data takes across the internet.
A traceroute lists every router (hop) between the network and the destination, with the round-trip time to each. Reading it is mostly about spotting where the numbers change, not the numbers themselves:
* * * mean? A timeout for that hop's probes. It usually does not mean a problem — many routers are configured to ignore or de-prioritise the ICMP/UDP packets traceroute uses, so they stay silent while still forwarding traffic fine. Only worry if the asterisks are at the final destination or continue all the way to the end.Traceroute shows the path; to test raw reachability and packet loss to the same host, use the Ping tool. If the destination is a website behaving oddly, a Website Check tells you whether the server itself (DNS, certificate, response) is the issue rather than the network in between.
Traceroute works by sending packets with increasing TTL (Time To Live) values. Each router decrements the TTL, and when it reaches zero, the router sends back an error message revealing its identity and response time.
Asterisks indicate that a hop didn't respond within the timeout period. This often means the router is configured not to respond to traceroute packets, or there's packet loss at that hop.
A typical traceroute has 10-20 hops. Very distant destinations may have more. Fewer hops generally means faster routing, though hop count alone doesn't determine speed.
Everything this tool does, available as a simple REST endpoint with JSON responses — perfect for scripts, monitoring and integrations. Free tier: 100 requests/month, no card required.
curl -H "X-API-Key: tn_your_api_key" \
"https://tools-ninja.com/api/v1/traceroute?target=example.com"