Minify JSON
Compress JSON by removing all unnecessary whitespace. Runs entirely in your browser, so your data never leaves your device.
0 chars · 0 lines
Output
The result appears here as you type.
How to use Minify JSON
- 1. Paste your JSON. Paste a formatted or partially indented JSON document into the input pane. It can span hundreds of lines; the minifier reads the whole structure and strips it down as soon as it parses.
- 2. Check the compacted result. Every space, tab and newline between tokens is removed, leaving only the characters JSON needs to stay valid. There are no options to configure; the output is always the smallest valid representation of your input.
- 3. Copy the minified output. Copy the single-line result and paste it into an API request body, a config value, or anywhere byte count matters. Re-parsing it with any JSON parser returns the exact same data.
When to use Minify JSON
Minify JSON is for shrinking a formatted JSON document down to the fewest bytes possible before it travels over a network or sits in storage. Indentation and line breaks exist for human readers, and stripping them out has no effect on the data itself, only on its size.
- Shrinking an API request body. You hand-wrote a JSON payload with indentation for readability while testing in Postman, and now want to send it as compact as possible in a production request to save bandwidth.
- Fitting JSON into an environment variable. A deployment platform limits environment variable length, and your JSON config has extra whitespace. Minifying it first buys back the characters needed to fit under the limit.
- Embedding config in a single-line script argument. You need to pass a JSON string as a command-line flag or a one-line shell script argument, where embedded newlines would break the command. Minifying removes them.
- Reducing log line size. Your logging pipeline stores JSON events as individual lines, and pretty-printed JSON would break that one-event-per-line assumption. Minifying keeps each event on a single compact line.
Examples
Minify a formatted object
Input
{
"name": "Ada",
"active": true
}Output
{"name":"Ada","active":true}About the Minify JSON tool
Minify JSON runs as plain JavaScript in your browser tab, with no server behind it. Compress JSON by removing all unnecessary whitespace. Whatever you put in stays on your device from start to finish.
The tool is part of EditSafely's JSON Tools section, 90 single-purpose utilities built around the same idea: open the page, get the result, keep your data to yourself.
There is nothing to configure. Provide the input and the result appears on its own. A worked example further down the page shows exactly what the tool produces for a real input.
That local-first design has practical benefits beyond privacy. The tool keeps working on a flaky connection once the page has loaded, results are instant because nothing round-trips to a server, and it is safe to use with confidential material.
Frequently asked questions
Does Minify JSON cost anything?
Yes, it is completely free. All 2,658 tools on EditSafely work without an account, a subscription or usage limits.
Is it safe to paste sensitive or confidential data?
No data leaves your device. The whole tool is JavaScript that runs inside your browser tab, so there is no upload, no server-side processing and no log of what you did. If you disconnect from the internet after the page loads, it keeps working.
How much text can I process at once?
There is no fixed limit. Because the work happens on your own device rather than on a shared server, the practical ceiling is your machine's memory, which comfortably handles inputs far larger than typical online tools allow.
Do I need to sign up or install anything?
Nothing to install and no account needed. Open the page in any up-to-date browser, including on a phone or tablet, and the tool is ready.
How do I use the result?
The output panel has a one-click copy button, and you can keep refining the input while you work; the result updates in place as you type.