Quick Answer
What is the difference between Format and Minify? Format adds indentation for readability. Minify strips all whitespace for the smallest possible JSON string — useful for API payloads.
Frequently Asked Questions
It parses your JSON and rewrites it with consistent indentation (pretty-print), making it human-readable. It also validates that the JSON is syntactically correct and highlights errors with line numbers if it is not.
Format (pretty-print) adds indentation and newlines to make JSON easy to read. Minify removes all whitespace to produce the smallest possible JSON string, useful for API payloads and storage efficiency.
Yes — paste your JSON and click Format. If the JSON is invalid, the tool displays a syntax error message with the line and column number where the problem occurs. Valid JSON formats without any error banner.
YAML and XML conversion are Pro features. Free users can format and minify JSON. Paid plans paused to convert between JSON, YAML, TOML, and XML formats directly in the tool.
The free browser editor handles files up to around 1MB. Loading files up to 10MB is Pro-only and currently paused. New paid-plan purchases are paused, while the free editor remains available.
Yes by default. The formatter preserves insertion order for object keys as per the ECMAScript 2015 spec. Enable the Sort Keys option to alphabetically sort all object keys instead.