JSON Minifier

JSON Minifier Form

This form allows you make minify JSON format:


Move to «Paste Code» for Save it

About JSON Minifier tool

What is JSON?

JSON stands for "JavaScript Object Notation" it's a text-based data exchange format based on JavaScript. It's meant to be a human-readable and compact solution to represent a complex data structure and facilitate data-interchange between systems. JSON data can be generated and parsed with a wide variety of programming languages.

About JSON Minifier tool

The Minifier JSON online was created to help with removing all whitespace, indentation and newlines for decrease size and amount of data transferred on clients. The purpose of minifcation is to increase the speed of a website. Minimisation can make a json up to 10% smaller, resulting in a faster download time.

How it Works?

Just paste your JSON to the textarea above and click to the button "Minify" and you will get compressed JSON in the same textarea.

Example of JSON Minify

Before:
{
	"website":
	{
		"domain": "wtools.io",
		"title": "Online Web Tools"
	}
}
After:
{"website":{"domain":"wtools.io","title":"Online Web Tools"}}