JSON Formatter
Format, validate and minify JSON
Input
Output
Examples
| Mode | Input | Apply |
|---|---|---|
| Format | {"name":"Alice","age":30,"active":true} | |
| Format | [{"id":1,"name":"foo"},{"id":2,"name":"bar"}] | |
| Minify | { "name": "Alice", "age": 30, "active": true } | |
| Minify | [ { "id": 1 }, { "id": 2 } ] | |
| Validate | {"status":"ok","code":200} | |
| Validate | {"broken": true,} |