Free Online Tool JSON Minify

Input data
bfotool loadding
Output data
bfotool loadding

Welcome to the online JSON Minifier, JSON minify, JSON Compressor at bfotool.com. 

JSON Minifier - What can you do with this tool?

  • Minify/Compress your JSON.
  • Beautify/Format your JSON.
  • Once you have minified JSON Data. You can download as a file or save as link and Share.
  • JSON Minifier works well on Windows, MAC, Chrome, and Firefox.

Javascript Minifier Example

Before:

{
     "menu": {
         "id": "file",
         "value": [
             1,
             2,
             3
         ],
         "popup": {
             "menuitem": [
                 {
                     "value": [
                         "one",
                         "two"
                     ],
                     "onclick": "CreateNewDoc()"
                 },
                 {
                     "value": "Close",
                     "onclick": "CloseDoc()"
                 }
             ]
         }
     }
 }

 Becomes this minify:

{"menu":{"id":"file","value":[1,2,3],"popup":{"menuitem":[{"value":["one","two"],"onclick":"CreateNewDoc()"},{"value":"Close","onclick":"CloseDoc()"}]}}}