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.
How it works
- Paste URL — full URL including query and hash.
- Components — each part shown separately.
- 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 build a tracking URL with campaign parameters, see the UTM Builder. To turn a request into code, try cURL to fetch.