Разбирайте строку запроса URL в JSON и создавайте строку запроса из JSON в браузере.
Как использовать Строка запроса
Выберите направление: запрос в JSON или JSON в запрос.
Вставьте строку запроса (с или без ведущего ?) или JSON-объект.
Скопируйте результат или поменяйте для обратного конвертирования.
A query string converter that turns the parameters in a URL into a readable JSON object, and builds a query string back from JSON. It decodes values, and treats repeated keys as arrays in both directions.
It runs locally in your browser, so the URLs you inspect, which can contain tokens or personal data, never leave your device.
A query string is the part of a URL after the question mark, like ?q=shoes&page=2, a list of key-value pairs that pass data to a page or API. They drive search results, filters, pagination and tracking.
When a key appears more than once, such as tag=a&tag=b, it becomes an array in the JSON so no values are lost, and a JSON array expands back into repeated parameters when you build the string.
You can paste a whole URL when converting to JSON: anything before the question mark is ignored, so you do not have to trim it first. This makes it quick to inspect the parameters of a link from your address bar.
Percent-encoded values are decoded when parsing so you can read them, and encoded again when building a query string so the result is valid, which keeps spaces and special characters correct.
Часто задаваемые вопросы
Ключ, встречающийся более одного раза, например tag=a&tag=b, становится массивом в JSON, а массивы JSON разворачиваются в повторяющиеся параметры.
Да. При конвертации в JSON всё до ? игнорируется, поэтому можно вставить весь URL.
Да. Процент-кодированные значения декодируются при разборе и снова кодируются при создании строки запроса.
Встроить этот инструмент
Добавьте этот инструмент на свой сайт. Скопируйте фрагмент ниже, он обновляется автоматически.
<iframe src="https://monu.tools/embed/ru/query-string-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>Похожие инструменты
Создавайте и подписывайте HS256 JSON Web Tokens из payload и секрета полностью в браузере.
Ищите и просматривайте HTTP-коды состояния и их значения от 1xx до 5xx.
Конвертируйте файл .env в JSON и обратно в .env в обоих направлениях полностью в браузере.
Генерируйте HMAC для сообщения и секретного ключа с SHA-1, SHA-256, SHA-384 или SHA-512 в браузере.