DEVELOPER TOOL

URL Parser

Break a URL down into protocol, host, path, and query parameters.

Query parameters

About this tool

Paste any URL to break it down into its component parts — protocol, host, port, path, query string, and fragment — with each query parameter listed individually. Useful for debugging links, webhooks, or API endpoints at a glance.

Frequently asked questions

What if the URL is missing "https://"?
A protocol is required for parsing — "example.com/page" without a scheme is treated as invalid; try "https://example.com/page" instead.
Does this handle repeated query parameters?
Yes — if a parameter appears more than once (like ?tag=a&tag=b), each occurrence is listed separately in the parameters table.
Are query parameter values decoded?
Yes — percent-encoded characters in the query string (like %20 for a space) are shown decoded for readability.