Url Parser
Result
Share on Social Media:
URL Parser — See Everything Hiding in a Link
Modern URLs are dense: tracking parameters, encoded redirects, session tokens, campaign tags — all packed into one string. This free URL parser splits any link into its anatomy (protocol, host, port, path, query, fragment) and decodes every query parameter into a readable key-value table. Paste, inspect, edit, rebuild — all locally in your browser with no signup.
URL Anatomy
https://shop.example.com:8080/products/list?category=shoes&sort=price#reviews
└─┬─┘ └──┬──┘└────┬────┘└─┬─┘└─────┬─────┘└──────────┬──────────┘└───┬───┘
protocol subdomain domain port path query fragment
What Marketers Use It For
- UTM auditing — verify utm_source, utm_medium, and utm_campaign are present, spelled consistently, and free of typos before a campaign sends. One misspelled utm_medium fragments analytics forever.
- Cleaning share links — strip fbclid, gclid, and tracking clutter to get the canonical URL.
- Affiliate link checks — confirm the tag/ref parameter survived the redirect chain.
What Developers Use It For
- Debugging API calls — see exactly which parameters a request carried, decoded, without squinting at %2F and %3D escapes.
- OAuth flows — inspect redirect_uri, state, and scope values in authorization URLs.
- Security review — spot open-redirect payloads and suspicious encoded parameters in links from logs or phishing reports (safe here, since nothing is fetched or executed — the string is only parsed).
Percent-Encoding Decoded
| Encoded | Means | Encoded | Means |
|---|---|---|---|
| %20 / + | space | %3D | = |
| %26 | & | %2F | / |
| %3F | ? | %23 | # |
The parser decodes automatically, including UTF-8 sequences for non-Latin characters, so you always read intended values.
Free and Private
Uses the browser's native URL API — no network request, no logging, no account. Safe even for links containing live tokens.