Loading your tools...
Loading your tools...
Inspect URL structure, decode query parameters, and validate links quickly.
Loading Tool...
Paste a full or relative URL in the input field.
Review parsed parts: scheme, host, path, search, hash, and origin.
Inspect decoded query keys and values in the parameter table.
Debugging broken links and redirect chains
Auditing UTM and tracking parameters
Inspecting callback URLs from OAuth/API integrations
Validating query structures before release
A URL parser separates a link into standardized components so each part can be inspected independently. This prevents common mistakes such as malformed query strings, incorrect hosts, or duplicated parameters.
Parsed output aligns with browser URL behavior and helps teams perform quick validation without opening a terminal or writing ad-hoc scripts.
For campaign QA, verify both raw query strings and decoded values to catch encoding errors before publishing.
Check scheme (`https`), hostname spelling, path casing, duplicated parameters, and unwanted fragments. Small URL errors can impact crawling, analytics attribution, and user trust.
If values contain encoded symbols (for example `%2F` or `%20`), verify the decoded output and re-encode only the exact parameter value when rebuilding URLs.
Break down a URL into scheme, host, path, query parameters, and hash.
| Scheme | https |
| Host | example.com |
| Hostname | example.com |
| Pathname | /search |
| Search | ?q=url+parser&lang=en&page=1 |
| Hash | #results |
| Origin | https://example.com |
| Key | Value |
|---|---|
| q | url parser |
| lang | en |
| page | 1 |