Network
Parse and build URL query strings with a key/value editor.
Runs entirely in your browser
Nothing you paste is uploaded. Monaco and Prettier load on demand from this origin.
URL or query string
Parameters
q=safepaper&page=2&sort=asc
There is no upload endpoint — your files are processed in this browser tab. Open your network tab and check. See how it stays private.
How to query string builder
- Add pairs. Enter each parameter key and value.
- Build. The encoded query string is assembled.
- Copy. Append it to your URL.
Assembling a query string by hand invites encoding bugs. Building it from key/value pairs guarantees correct escaping and makes repeated or complex parameters straightforward.
To take a URL apart instead, use the URL parser; to encode a single value, the URL encoder.
Frequently asked questions
Does it encode values correctly?
Yes. Values are percent-encoded so special characters don't break the URL — no need to escape each one by hand.
Can it handle repeated keys?
Yes. Add the same key multiple times for array-style parameters, which the builder serializes correctly.
Is anything uploaded?
No. The query string is built locally in the tab.
Related tools
- URL parserBreak a URL into protocol, host, path, and editable query parameters.
- URL encodeEncode or decode URI components without sending data anywhere.
- cURL to codeTurn a cURL command into fetch, axios, Python requests, or Go — locally.
- HTTP clientSend HTTP requests directly from your browser (subject to CORS).