Developer
URL Parser
Paste a URL to see each part separately — scheme, host, port, path, query parameters and fragment — with values already decoded.
Good to know
Frequently asked questions
Why do I need to include https://?
A URL without a scheme is relative, so the parser cannot tell the host from the path. Add the scheme and it parses correctly.
Is the URL requested?
No. Nothing is fetched — the address is only parsed as text in your browser.
Are repeated query keys supported?
Repeated keys are listed individually in the parameter table; the JSON view keeps the last value for each key.
Does it decode the values?
Yes. Percent-encoded characters and plus signs in query values are decoded for readability.