URL Parser
Break a URL into host, path, query params & hash.
How it works
Paste any URL and it's split into its parts, with query parameters decoded into a table — handy when debugging a link, a redirect, or a tracking URL.
https://host:port/path?query#hash
Try an example
| Protocol | https |
| Host | shop.example.com |
| Port | 8443 |
| Path | /products/shoes |
| Query | q=blue%20suede&page=2&sort=price |
| Fragment | reviews |
| Origin | https://shop.example.com:8443 |
Query parameters (3)
| Key | Value (decoded) |
|---|---|
| q | blue suede |
| page | 2 |
| sort | price |