Parse a URL into protocol, host, hostname, port, path, query string, fragment, and individual query parameters. The structured result is useful for debugging links, API endpoints, redirects, callback URLs, and campaign tracking.
The output separates values that are easy to confuse when reading a long address. It keeps repeated query parameters as individual key-value entries and provides the complete result as formatted JSON for copying into a bug report, test, or script.
https://, for an unambiguous result.Parsing does not open the URL, test whether it exists, follow redirects, or make a network request. Percent-encoded query values are decoded by the browser URL parser.
Related tools: URL Encode Decode · Query String to JSON