A short companion for JSON Diff: when it is useful, what it expects, and what to check before using the result.
What it does
Compare two JSON documents and see what was added, removed or changed, key by key. Because both sides are parsed first, differences in whitespace and key order are ignored and only real changes are reported — which makes it far more useful than eyeballing two formatted blobs.
Use the tool
Open JSON Diff, add the input the tool asks for, run it, and check the output before using it elsewhere.
Input and output
- Input: text.
- Output: text.
- Category: Workflow.
Privacy and processing
Processing happens locally in your browser. This tool does not upload the input to ilham.dev.
Questions
Does key order count as a difference?
No. Both documents are parsed and compared as structures, so reordering keys is not a change.
Can it merge the two documents?
No. It reports differences. Merging is a separate decision that depends on which side should win, and that is a judgement the tool cannot make for you.
Related guide
For broader background, see Working With Structured Data.