Quick start
-
Paste JSON A and B
Objects and arrays supported; strict JSON syntax required.
-
Click Compare
Results list each path with + / β / ~ symbols.
Paste two JSON documents to recursively compare objects and arrays. Spot added, removed, and changed fields for API regressions and config migrations.
Privacy: processed locally, never uploaded.
β Paste in the input area below to see results instantly
Paste two JSON documents and compare field-level differences.
2 difference(s) found
~ version: 1 β 2 + ready: true
+ means added in B, β means only in A, ~ means value changed at the same path. Nested objects and arrays are compared recursively.
Paste two JSON documents to recursively compare objects and arrays. Spot added, removed, and changed fields for API regressions and config migrations.
Paste JSON A and B
Objects and arrays supported; strict JSON syntax required.
Click Compare
Results list each path with + / β / ~ symbols.
Structural diff of two JSON documents with added/removed/changed paths after optional formatting.
Use for API contract regression, config drift, LLM JSON compares, and DB export diffs.
+ path added in B; β only in A; ~ value changed at the same path.
The most common scenario is API change verification. Paste the old API response on the left and the new version on the right. The tool highlights field changes, like a new 'discount' field or missing 'expired_at', preventing oversight of critical modifications.
Another practical use is config migration checks. Compare database config JSONs between dev and prod environments to ensure sensitive fields like ports and passwords match. Array order differences are marked blue, while value changes appear red, visually distinguishing structural from content changes.
Input
{"version":1} Output
{"version":2,"ready":true} Compared by index; reordering shows as multiple ~ or +/β entries.
By default strict mode treats different array orders as changes. Check "Ignore array order" option if available. Note this may hide real business logic issues, like queue processing that relies on order.