Search for a tool or command
Validate JSON syntax and pinpoint the exact line and column of any error.
The JSON Validator checks whether your document conforms to the JSON specification and, when it does not, tells you precisely where and why it fails. Instead of a vague 'unexpected token', you get the line, column, and character that broke parsing. Use it to debug malformed API payloads, config files, and copy-pasted snippets in seconds.
Add the JSON you want to check into the input editor.
A clear pass or fail badge appears immediately, along with any error details.
If validation fails, the reported line and column point you straight to the problem.
Correct the issue and the validator re-runs to confirm the document is now valid.
The validator reports the exact position of the invalid token.
Input
{
"name": "Grace",
"team": "Compilers",
}Output
Invalid JSON: unexpected "}" at line 4, column 1 (trailing comma after "Compilers").Pretty-print JSON with configurable indentation and instant validation.
Validate JSON against a JSON Schema using AJV.
Turn minified or tangled JSON into clean, readable, well-indented text.
Query JSON with JSONPath expressions and see live results.