Text Diff
text × text → diffCompare two versions line by line and see what was added and removed.
About Text Diff
Paste two versions of anything — a config file, an API response, a log excerpt — and see line by line what was added and what was removed. Side by side puts each removal opposite the line that replaced it; unified stacks them into a single column with the familiar plus and minus markers.
Two options do most of the work in practice. Ignoring whitespace stops trailing spaces and changed indentation from swamping the real differences. Formatting both sides as JSON pretty-prints them first, which turns an unreadable diff of two minified payloads into something you can actually scan — pair it with the JSON formatter's sort-keys mode when the two sides also disagree about key order.
The comparison uses a longest-common-subsequence match computed in your browser. Nothing is uploaded, so comparing two real production responses is safe.
Common questions
This page does the work itself, in this tab. Nothing you paste is sent to a server. Close the tab and no copy remains.