Web Dev Helpers
URL Parser / Inspector
Break any URL into scheme, host, port, path, query and hash - with per-field copy.
URL
Uses the browser's native URL parser. Missing scheme is treated as https://.
About this tool
Paste a URL and see every component split out: scheme, username/password, hostname, port, host, origin, pathname, search, hash, plus each query parameter as its own key/value with a copy button. Handy for debugging redirects, sharing OAuth callback URLs, or picking apart tracking parameters. Uses the browser's native URL parser - completely in-browser, nothing leaves your machine.
FAQs
Missing scheme?
If you don't include http:// or https://, the tool assumes https:// so you don't have to type it.
How are query params decoded?
The tool uses URLSearchParams, which decodes percent-escaped values automatically. Copy buttons return the decoded value.
Does it validate the URL?
It uses the browser's URL constructor, which enforces RFC 3986. Malformed URLs (spaces, invalid characters) show an error message.