Skip to content
ConvertPassConvertPass home

Developer

JSON repair helper

Rebuild almost-JSON into strict JSON, then read the warning before you trust it.

This tool processes files and text locally in your browser. Your content is not uploaded or stored by this site.

0 B
Empty

Empty. Paste text, drop a file, or load the example.

What this tool does

The helper uses a repair pass for common syntax issues, then parses and pretty-prints the result. It is meant for log snippets, copied objects, and JSONC that you need to feed to a strict parser.

How to use it

  1. Paste the broken JSON.
  2. Read the warning. Repair is best-effort.
  3. Diff the output against what you expected before using it.

Supported input

  • Almost-JSON text, UTF-8, up to 2 MB

Output

  • Pretty-printed strict JSON, if repair succeeds

Privacy

This tool processes files and text locally in your browser. Your content is not uploaded or stored by this site.

ConvertPass does not include your input in analytics, URLs, or error reports. Encoding: UTF-8. Limit: 2 MB (2.00 MB).

Limitations

  • Repair can invent structure. Always review the output.
  • Binary data, truncated files, and mixed log lines may produce nonsense rather than a useful document.

Example

Input
{name: 'ConvertPass', local: true,}
Output
{
  "name": "ConvertPass",
  "local": true
}

Troubleshooting

Repair succeeds but the data looks wrong
Stop and fix the source document. The helper cannot know whether a missing brace should close an object or an array.

FAQ

Can I use this in a production pipeline?

Only with review. Silent repair in a pipeline hides data loss. Prefer rejecting invalid JSON at the boundary and fixing producers.

Does it execute JavaScript?

No. It does not evaluate the input. It only rewrites text toward JSON grammar.

Will it keep comments?

No. Comments are discarded because JSON has nowhere to put them.

What mistakes can it usually fix?

Trailing commas, single quotes, unquoted keys, and simple comments. Truncated files and concatenated objects are much less reliable.

Related tools

  • JSON validator

    Check whether text is valid JSON, with a useful error location.

  • JSON formatter

    Pretty-print JSON locally with clear parse errors and a one-click copy.

  • JSON minifier

    Collapse JSON to a single compact line without sending it anywhere.

Related guides

Related formats

Last reviewed 16 August 2026. Report a problem. Reports do not include your input.