URL Parser
Break a URL down into its protocol, host, path, query parameters, and more.
Break a query string down into key-value pairs and view it as JSON.
Query String Parser breaks down the query string portion of a URL (everything after “?”) into key-value pairs and lists them. Values are automatically URL-decoded, and the result can be converted to JSON with one click. Useful for debugging API requests and inspecting complex query parameters.
Yes. If you enter a full URL, only the query portion is automatically extracted and parsed.
The table lists each occurrence as a separate row. In the JSON output, duplicate keys are grouped into an array.
Yes. Encoded values such as %20 or plus signs are automatically decoded for display.
No. All processing happens in your browser using the built-in URLSearchParams API.