URL Parser & Inspector

Break a URL into scheme, host, port, path, query and hash.

Paste any URL and see each component separately: scheme, username, password, hostname, port, path, hash, origin, plus a parsed table of query parameters. Useful when debugging routing, redirects and OAuth callback flows.

Common use cases

  • Inspect every part of an OAuth redirect URL during debugging
  • Pick out a specific query parameter from a long share URL
  • Verify a URL's origin matches an allowed list
  • Decode percent-encoded path segments quickly

Frequently asked questions

Does it use the browser's native URL parser?
Yes — the WHATWG URL API. So results match exactly what window.location and fetch() see.
Will it decode encoded query parameters?
Yes — search-param values are returned decoded. The 'search' field is the raw encoded query string for reference.
What's the difference between origin and host?
Origin includes the scheme (https://example.com:443). Host is just hostname:port (example.com:443) or hostname when the default port is used.

Related tools