Prepare CSV Data for Import
Convert a CSV into JSON to seed a database or load into an app.
Drop a CSV file (or paste below)
CSV, TSV, TXT aucune limite de taille de fichier
—
💡 A proper RFC 4180 parser — handles quoted fields, commas and line breaks inside quotes, and escaped quotes. With "first row is a header" on, you get an array of objects; off, an array of arrays. Everything runs in your browser.
data import tips
Many tools and NoSQL databases import JSON more easily than CSV — convert first.
Type conversion ensures numeric IDs and flags import as numbers/booleans.
Review the JSON output for any columns that need renaming before import.
Your data is processed locally.
Comment ça marche
Pourquoi utiliser le nôtre ?
Also check out…
Convert CSV to JSON for an API
Turn a spreadsheet export into JSON your code or A
Convert Messy CSV with Quotes and Commas
Parse CSV that has commas, quotes, or line breaks
Convert TSV (Tab-Separated) to JSON
Parse tab-separated data copied from a spreadsheet
Quickly Inspect CSV as JSON
See CSV rows as structured JSON objects while deve
