Frequently Asked Questions

Is my JSON private?

Yes. Formatting/validating happens entirely in your browser via JSON.parse and JSON.stringify. Nothing is sent to any server. Safe for API responses with tokens, customer data, anything sensitive.

Why is my JSON invalid?

Most common causes: trailing commas (not allowed in JSON), single quotes instead of double, unquoted property names, JavaScript-style comments. The error message points to the position of the problem.

What's the difference between format and minify?

Format adds indentation and newlines for readability. Minify removes all whitespace to produce the smallest valid JSON — used in production payloads.