Free URL Parser — See Every Part of a Link
Paste a tracking link and instantly see its anatomy: protocol, hostname, port, path, hash and every query parameter with its decoded value. Marketers use it to audit UTM tags, developers to debug redirects and analysts to spot hidden session IDs buried in campaign URLs.
🔒 100% Private — runs in your browser, nothing is uploadedHow to Use This URL Parser (Step-by-Step)
- Paste any URL — Include the https:// prefix for best results.
- Click Parse — The link is dissected into its components.
- Inspect parameters — Every query key/value pair is listed decoded.
Anatomy of a URL — Under the Hood
A URL is a strict hierarchy: scheme, authority (host + optional port), path, query and fragment. The tool uses the browser's built-in URL class — the same WHATWG-compliant parser Chrome uses internally — so edge cases like percent-encoded UTF-8, punycode domains and IPv6 hosts are handled exactly as modern browsers resolve them.
Frequently Asked Questions
Does it fetch the URL?
No — parsing is pure string work. Nothing is requested or sent.
Are %20 values decoded?
Yes, query parameters are shown URL-decoded automatically.
Why does my link say invalid?
The WHATWG parser needs an absolute URL — add https:// and retry.