Compare JSON the way APIs think
Line-based diffs are great for source code. They are awkward for JSON: serializers may reorder keys, pretty-printers change wrapping, and two equivalent objects look “completely different” in a text viewer. A structural JSON diff parses both sides and reports added, removed, and changed paths — so you see product-relevant drift, not formatter noise.
Paste a baseline response on the left and a candidate on the right, then hit Compare. Green marks additions, red marks deletions, and modified leaves show both values. Everything stays on your machine: useful when the payloads include customer data you should not ship to a third-party diff host.
Typical uses
- Regression-check API fixtures after a backend change
- Review config files exported from two environments
- Explain a production incident by contrasting two webhook bodies
Need to clean up a single payload first? Use theJSON Formatter.