Tested tool guide
Tested browser tools
Checked August 16, 2026
What URL Unshortener & Redirect Tracer does, with a checked example
Short links are envelopes, not letters: a bit.ly or t.co address only tells you who forwards it, not what is inside. This tool opens the envelope - it follows the redirect chain hop by hop, reporting each status code and ending at the final destination, without ever rendering a response, so no page script executes in your browser. The requests do come from your browser, so the destination can log them; the safety is in seeing where a link leads without running it. The usual surprise: many shorteners finish with JavaScript or a meta refresh, which an HTTP trace cannot follow - you get the intermediate page, not the final one.
Worked example
A concrete input and expected output from the current implementation.
Input
https://httpbin.org/redirect-to?url=https://example.com
->
Expected output
Redirect trace:
1. https://httpbin.org/redirect-to?url=https://example.com - 302 Found, Location: https://example.com
2. https://example.com - 200 OK
Final destination: https://example.com (2 hops, 1 redirect)
httpbin.org is a public HTTP testing service, and its /redirect-to endpoint answers any request with a 302 pointing at the URL given in its url parameter. The trace therefore shows exactly one redirect hop followed by the final 200 from example.com - the same two-step shape a bit.ly or t.co link produces, though real shortener chains are usually longer.