What is Bit.ly and why would you unshorten it?
Bit.ly is a link-shortening service that replaces long URLs with compact redirects like
https://bit.ly/3xxxxxx. Marketers use it to
track click counts, shorten URLs for social posts, and run A/B tests on link performance. The convenience is
real — but so is the trade-off: the shortened link gives you no information about where you'll actually land.
You're trusting the sender to have pointed the link somewhere legitimate.
There are three common reasons to unshorten a Bit.ly link before clicking it. The first is safety: phishing campaigns frequently use link shorteners to obscure the destination domain. If someone sends you a "bank alert" or "your account" link via email or DM, checking the final domain takes five seconds and can save you from a credential-stealing page. The second reason is tracking: Bit.ly logs every click — who, when, from where. If you'd rather not register a click before deciding whether to visit the page, unshortening lets you inspect the destination first. The third is simple curiosity: sometimes you just want to know where a link goes before committing to it.
How unshorten.app resolves a Bit.ly link
When you paste a Bit.ly link into the tool, the server makes a HEAD request to the URL. Bit.ly responds with a
301 or 302 redirect pointing to the next hop. The tool reads the Location header, records the status code and response time, then follows the redirect to the next URL. This repeats until
the chain reaches a non-redirect response or the hop limit. If a server doesn't respond to HEAD, the tool retries
with a GET request and a Range header so it doesn't download the full page body. Each hop in the chain is returned
with its URL, HTTP status code, and how many milliseconds it took to respond.
The result you see includes the full redirect chain from your original Bit.ly URL to the final destination, plus the final domain in plain text so you can read it at a glance.
What the KNOWN_SHORTENER flag means for Bit.ly
Every Bit.ly link will show a KNOWN_SHORTENER flag in the results. This is informational, not a warning.
The flag means the tool recognised the input domain as a known link-shortening service — which is expected, since
you pasted a Bit.ly URL. It does not indicate anything suspicious about the destination. The flag exists to be useful
when a shortened link appears in the middle of a chain rather than at the start — for example, if a Bit.ly
link redirects through another shortener like t.co before reaching the final page. Seeing KNOWN_SHORTENER mid-chain is a signal worth noticing; seeing it on the input
URL you just pasted is not.
Bit.ly links that chain through multiple shorteners
Some Bit.ly links don't go straight to a final page. They redirect first through a tracking or affiliate service, then through a second shortener, and only then to the destination. This is more common than you might expect — ad networks, affiliate platforms, and email service providers all insert their own redirect hops for attribution. A naïve unshortener that only follows the first redirect will show you an intermediate URL, not the real destination. unshorten.app follows the full chain — up to ten hops by default, fifteen if you increase the limit — so you always see where the link actually ends up, regardless of how many services it bounced through along the way.