How to parse and decode URL components

Paste a URL — see protocol, host, path, query params, and hash decoded.

Debugging OAuth redirects and webhook callbacks means dissecting URLs by hand. The URL Parser breaks any URL into protocol, hostname, path, query string, and fragment — with decoded values.

Try it — paste any URL

How it works

  1. Paste URL — full URL including query and hash.
  2. Components — each part shown separately.
  3. Query params — key-value pairs decoded from the query string.

Encoding

Percent-encoded characters in path and query are decoded for readability. Invalid URLs show a clear error instead of silent failure.

Build URLs

To construct query strings, see Query String Builder or encode with URL Encoder.