Мініфікуйте та перевіряйте JSON у вашому браузері й дивіться, скільки байтів ви заощаджуєте.
Як користуватися Мініфікатор JSON
Вставте свій JSON.
Він автоматично перевіряється та мініфікується.
Скопіюйте мініфікований вивід і перевірте економію байтів.
A JSON minifier validates your JSON and strips out every unnecessary character, the spaces, indentation and line breaks that make JSON readable, then reports how many bytes and what percentage you saved.
Minified JSON is identical in meaning to the formatted version; only the cosmetic whitespace is gone. That makes it the right form for production: API responses, config bundled into an app, or any payload where transfer size and parse time matter.
It runs in your browser using the native JSON engine, so the output is exactly what your own code would produce. Because it parses first, a successful minify also confirms your JSON is valid; invalid input returns a precise error instead.
One subtle effect is number normalization, which is part of the JSON standard rather than this tool: 1.50 becomes 1.5 and 1e3 may be rewritten, because those represent the same value. Keys, strings, booleans and structure are never changed.
Minification and gzip are complementary, not alternatives. Servers usually gzip responses, which compresses repeated text heavily; minifying first removes whitespace the compressor would otherwise have to handle, and the two together give the smallest transfer.
When you need to read or edit JSON instead of shrink it, the JSON Formatter does the reverse, pretty-printing it with clean indentation. Nothing you paste here is uploaded.
Поширені запитання
Вона вилучає всі непотрібні пробіли та переноси рядків, створюючи найменший коректний JSON із тими самими даними, який швидше передавати.
Ні. Вилучається лише форматування. Ключі, значення та типи зберігаються, а числа нормалізуються за стандартом JSON (наприклад 1.50 стає 1.5).
Ви побачите повідомлення про помилку від парсера, щоб виправити його. Ніщо не мініфікується, доки JSON не стане коректним.
Вбудувати цей інструмент
Додайте цей інструмент на власний сайт. Скопіюйте фрагмент нижче; він оновлюється автоматично.
<iframe src="https://monu.tools/embed/uk/json-minifier" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>Пов'язані інструменти
Форматуйте, впорядковуйте та перевіряйте JSON онлайн із чіткими повідомленнями про помилки для некоректного вводу.
Перетворюйте JSON на CSV і CSV назад на JSON в обидва боки. Оберіть роздільник, обробляйте поля в лапках і копіюйте результат. Усе працює у вашому браузері.
Перетворюйте YAML на JSON і JSON назад на YAML в обидва боки. Перевіряє коректність під час перетворення та показує чіткі помилки. Усе працює у вашому браузері.
Генеруйте інтерфейси TypeScript зі зразка JSON, із вкладеними типами, масивами та опційними полями. Працює у вашому браузері.