Code tool

URL Parser

Paste an absolute URL to inspect its protocol, host, path, query parameters, hash, and normalized form in your browser.

In-browser processingNo account requiredPrivacy details ↗

Absolute URLs only. Parsing stays in this browser and never opens the address.

A QUICK WALKTHROUGH

How to use this tool

  1. Paste an absolute URL, including its protocol when possible.
  2. Choose Parse URL to inspect each component and query parameter.
  3. Copy the normalized URL or an individual component when you need it elsewhere.

A local URL inspection tool

Parsing happens entirely in your browser with the built-in URL and URLSearchParams APIs. The pasted address is never opened, fetched, resolved, or sent to a server.

What gets displayed

Review the normalized URL, origin, protocol, username, port, hostname, pathname, search, hash, and each decoded query parameter. Values remain text; parsing does not validate that a destination exists or is safe.

GOOD TO KNOW

Common questions

Does this open the URL?

No. It only parses the text you paste. No network request is made.

Why does the normalized URL differ from my input?

The standard URL parser applies URL syntax rules such as lowercasing a hostname, resolving dot segments, and serializing query parameters consistently.

Can I parse a relative path?

Enter an absolute URL with a protocol, such as https://example.com/path. Relative paths need a base URL, which this tool does not invent.