</>

WebDevTools

CSV & JSON Converter

Spreadsheet-friendly conversion

First row becomes JSON keys. Export JSON arrays back to CSV.

CSV

JSON

Guide: convert CSV and JSON for spreadsheets and APIs

Excel/Sheets exports arrive as CSV with `,` or `;` delimiters and a header row. REST APIs expect JSON object arrays — spreadsheet hacks do not scale for pipelines.

Processing is local: paste non-sensitive or anonymized samples. Delimiter, quoting, and escapes are honored; empty rows may be skipped per options.

Use for DB seeds, test fixtures, or marketing exports. Validate types in the JSON viewer before posting to your backend.

Step by step

  1. Paste CSV or JSONInclude a header row in CSV. JSON should be an object array (or single object per tool rules).
  2. Set delimiter and headerPick `,`, `;`, or tab — common in EU CSV. Toggle first row as column names.
  3. Fix problematic rowsQuoted multiline fields should parse; correct any rejected lines.
  4. Export to destinationCopy JSON for `fetch` POST or CSV for Excel — chunk very large datasets.

Frequently asked questions