JSON Formatter
Format, beautify, and validate JSON data. Minify JSON or pretty print with custom indentation.
Input JSON
JSON Stats
Keys
7
Depth
2
Objects
2
Arrays
1
Minified
122B
Formatted
171B
Formatted JSON
{
"name": "John",
"age": 30,
"city": "New York",
"hobbies": [
"reading",
"gaming"
],
"address": {
"street": "123 Main St",
"zip": "10001"
}
}Minified JSON
{"name":"John","age":30,"city":"New York","hobbies":["reading","gaming"],"address":{"street":"123 Main St","zip":"10001"}}