Parent: root

About JSON Formatting

JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate.

This tool helps you:

JSON Example:

Formatted JSON

{
  "name": "John Doe",
  "age": 30,
  "isActive": true,
  "address": {
    "street": "123 Main St",
    "city": "Anytown",
    "zipCode": "12345"
  },
  "hobbies": [
    "reading",
    "swimming",
    "coding"
  ]
}

Minified JSON

{"name":"John Doe","age":30,"isActive":true,"address":{"street":"123 Main St","city":"Anytown","zipCode":"12345"},"hobbies":["reading","swimming","coding"]}