Parse URL query strings to JSON objects instantly in your browser. Uses URLSearchParams. Swap to JSON→QueryString in one click. 100% client-side and free.
The QueryString to JSON converter uses the browser's native `URLSearchParams` API to parse a URL query string (with or without a leading `?`) and produces a JSON object. Repeated parameters become JSON arrays. Both editors are live — swap to JSON→QueryString with one click. The JSON output has an interactive tree view.
QDoes it include the ? or # characters?
The converter accepts both full URLs and bare query strings. It strips any leading ? and ignores fragment (#) sections automatically.
QWhat happens with repeated parameters like ?a=1&a=2?
Repeated keys are collected into a JSON array: { "a": ["1", "2"] }.
QIs my data sent to a server?
No. All conversion runs in your browser.