CSV to JSON

Convert CSV data to JSON arrays. Header detection, custom delimiters, quoted fields, and embedded newlines handled.

Enter input above to see the result.

What is this for?

CSV is the lingua franca of spreadsheet exports; JSON is the lingua franca of APIs and config. This converter takes properly-quoted CSV (RFC 4180-compatible) and emits a JSON array — either an array of objects (when there's a header row) or an array of arrays. Useful when you've exported a sheet and need to feed it into something that talks JSON.

When to use it

Common gotchas