Search for a tool or command
Compare two JSON documents and see a precise structural diff.
The JSON Compare tool lets you compare two JSON documents online and get a structural, semantic diff rather than a naive text comparison. This JSON comparator ignores key order and whitespace and instead reports exactly which properties were added, removed, or changed, and where. That makes it ideal for spotting the real differences between two JSON files, API responses, config versions, or fixtures.
Add the first document into the left side as your baseline.
Add the second document into the right side to compare against.
See every added, removed, and changed value with its exact path.
Use the structured diff to confirm expected updates or catch regressions.
One value changed and one key was added.
Input
// A
{ "name": "Ada", "plan": "free" }
// B
{ "name": "Ada", "plan": "pro", "seats": 3 }Output
~ plan: "free" -> "pro"
+ seats: 3Deep-merge two or more JSON objects into one.
Recursively sort object keys alphabetically for stable, diffable JSON.
Pretty-print JSON with configurable indentation and instant validation.
Analyze JSON size, depth, key counts, and type distribution.