JSON Formatter
Input JSON
Instructions
- Paste or type JSON data in the input box
- Click "Format" to beautify JSON, or "Compress" to minify JSON
- Click "Copy" button to copy the result to clipboard
Example
Input (Compressed)
{"name":"John","age":25,"skills":["JavaScript","React","Node.js"]}
Output (Formatted)
{
"name": "John",
"age": 25,
"skills": [
"JavaScript",
"React",
"Node.js"
]
}