About this tool
Query String Parser is a free, in-browser developer tool that turns a URL query string into a formatted JSON object and rebuilds a query string from JSON. It runs on the browser's native URLSearchParams and URL parsing, so results match what the platform itself produces.
Paste a raw query string, a fragment starting with ?, or a whole URL — only the part after the ? is read, which makes it handy for inspecting analytics links, API request URLs, or OAuth redirects. Keys that appear more than once collapse into a JSON array, + and percent-encoded sequences are decoded to their real characters, and the JSON is pretty-printed with two-space indentation.
Feeding a flat JSON object the other way rebuilds an encoded query string, expanding array values back into repeated keys. Everything runs 100% in the browser: nothing is uploaded, there are no accounts or tracking, and it works offline.