Skip to content
WebKitool

URL Parser

Break any URL into protocol, host, port, path, query parameters and fragment.

Loading tool…

Processing: This tool runs entirely in your browser. Your input and any file you open stay on your device — nothing is uploaded to a server.

How to use the url parser

  1. Paste the full URL, including the protocol.
  2. Read the component breakdown and parameter table.
  3. Copy any individual value you need.

About this tool

Long URLs hide their structure. A tracking link with a dozen parameters, several of them encoded, is hard to read and easy to misedit. This parser uses the browser's own URL implementation to split the address into its parts and lists each query parameter with its decoded value.

Because it uses the same parser the browser uses for navigation, what you see is how the address will actually be interpreted — including surprises such as a parameter appearing twice or a fragment that swallows the rest of the string.

Common uses

  • Auditing the tracking parameters on a campaign link.
  • Debugging an OAuth redirect that carries nested URLs.
  • Checking which host and path a shortened link resolves to once expanded.

Frequently asked questions

What happens if a parameter appears twice?
Both are listed, in order. Servers differ on which one wins, so duplicates are usually a bug worth fixing.
Does it follow redirects?
No. It parses the text you paste without making any network request, so nothing about the URL is disclosed.

Related tools