About JSON Validator
A single misplaced character invalidates an entire JSON document, and the message a parser produces is often unhelpfully terse. "Unexpected token" tells you something is wrong without telling you where or why.
This locates the problem: the line, the column, an excerpt with the offending character marked, and a plain explanation. When the document is valid you get a structural summary instead — the top-level type, how many keys or elements it holds, and its maximum nesting depth — which is a fast check that a response is the shape you expected.
How to validate JSON
Paste your JSON
Validation runs as you type.
Read the result
Valid documents get a structural summary; invalid ones get the error location.
Fix and re-check
Correct the highlighted problem and the status updates immediately.