Developer Tools

Query Parser — URL Parameter Breakdown & Edit

Parse URL query strings into key/value pairs and structured JSON locally in your browser. Useful for debugging long GET params, pagination, and signature fields.

URLQueryJSON

Favorite this tool

No favorite storage mode has been selected.

Quick actions

Copy this tool URL or open the system share sheet on a supported device.

Use cases

  • Debug links with many query params
  • Turn query strings into JSON for diffing
  • Verify pagination, filters, and signature fields

How to use

  1. Paste a full URL or raw query string
  2. Review parsed pairs
  3. Copy JSON or edit parameters

Example input and output

URL

https://ex.com/search?q=uuup&page=2

JSON

{"q":"uuup","page":"2"}

FAQ

Can I paste only the part after ?

Yes. Full URLs are also supported—the tool extracts the query portion.

How are duplicate keys handled?

Repeated keys are preserved in a multi-value structure; exported JSON matches the table view.

Tools

Related tools

Continue with another translated tool for a nearby task.

Query String Builder

Query String Builder for URL Parameters

Available

Build a query string from key/value pairs in your browser and encode special characters. Useful for API debugging, tracking links, and share URL assembly.

URL Query

URL Parser

URL Parser and Query Parameter Splitter

Available

Parse a URL into protocol, host, port, path, query, and hash fields, and list each query parameter name and value. Useful for debugging API URLs and share links.

URL Parser Developer

URL Encode/Decode

URL Encoder and Decoder

Available

Percent-encode or decode text with encodeURIComponent or encodeURI. Useful for query values, non-ASCII paths, and API debugging. All processing stays in the browser.

URL Encoding Decoding