URL Query String to JSON

JSON output

Free Online URL Query String to JSON

Convert a query string or full URL into pretty-printed JSON. Duplicate keys become arrays so multi-value parameters are easy to inspect and reuse.

Example

foo=1&bar=two&tags=a&tags=b

→

{
  "foo": "1",
  "bar": "two",
  "tags": ["a", "b"]
}