Parse URL Query Parameters
Break down URLs into host, path, and query parameters for debugging and QA.
Open URL Parser with a ready-to-run example.
- You need to inspect tracking parameters like UTM or gclid.
- You want to validate query parameters before shipping links.
- You are debugging redirect or routing issues.
- Paste the full URL into the URL Parser.
- Review the parsed host, path, and query params.
- Edit params and rebuild the URL if needed.
- Paste scheme-less URLs and the tool will assume https://.
- Use the tracking params list to spot analytics noise.
- Sort or remove parameters before sharing links.
UTM-tagged product URL
https://shop.example.com/products?sku=ABC123&qty=2&utm_source=google&utm_campaign=winter
host: shop.example.com path: /products params: sku=ABC123 qty=2 utm_source=google utm_campaign=winter
Short link with hash
example.com/pricing?ref=twitter#plans
host: example.com path: /pricing params: ref=twitter fragment: #plans
Yes. The parser assumes https:// for scheme-less inputs.
Yes. Use the parameter table to update keys and values.
No. Everything stays in your browser.
Yes. The output updates as you edit parameters.
Privacy-first: runs locally in your browser. No uploads.