Updated 2026-07-09
Compare two CSV files and see exactly what changed, right in your browser. Paste the original on the left and the updated version on the right, and SnapTools marks every added, removed, and changed row as you type — with a configurable delimiter for tab, semicolon, or pipe data. Nothing is uploaded: the comparison runs locally, so it is safe for private exports and internal data.
Scanning two spreadsheets by eye to find what moved is slow and error-prone. CSV Diff does it in milliseconds and lays the differences out clearly, whether you are reviewing a data export, auditing a price change, or verifying a migration.
original: id,name,role 1,Ada,admin 2,Linus,dev updated: id,name,role 1,Ada,owner 2,Linus,dev 3,Grace,dev
~ 1,Ada,admin → 1,Ada,owner 2,Linus,dev + 3,Grace,dev
original: sku,qty A1,10 B2,5 updated: sku,qty A1,10
A1,10 - B2,5
↳ Curious to go deeper? Read the How to compare two CSV files guide →
curl -X POST https://snaptools.dev/api/v1/tools/csv-diff \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"csv1":"original: id,name,role 1,Ada,admin 2,Linus,dev updated: id,name,role 1,Ada,ow..."}'