What this tool does
The URL Parser takes any URL and breaks it into every component the web platform defines: scheme, userinfo, host, port, path, query string, and fragment. On top of that it derives the subdomain, registrable domain, and top-level domain (TLD), decodes the query parameters into a clean key-value table, and splits the path into its segments.
Why parse a URL?
URLs are dense. A single string can carry a protocol, credentials, a host, a non-standard port, a deep path, a dozen tracking parameters, and an in-page anchor. When a redirect misbehaves or an API call hits the wrong endpoint, seeing the URL broken into labelled parts turns guesswork into a quick read.
How the domain split works
For www.example.co.uk, a naïve split on dots would treat uk as the domain. The parser instead recognises common multi-part public suffixes (co.uk, co.in, com.au, and others), so it reports the subdomain as www, the domain as example.co.uk, and the TLD as co.uk.
Privacy
Everything runs locally in your browser using the standard URL API. Nothing you paste is uploaded, logged, or stored — safe even for URLs that contain access tokens.