How to use CSV to JSON

  1. Paste CSV (first line = headers).
  2. Click Convert to get a JSON array of objects.
  3. Copy or download the JSON.

Example

Input

name,age
Alice,30
Bob,25

Output

[{"name":"Alice","age":"30"},{"name":"Bob","age":"25"}]

Frequently asked questions

How are quoted CSV fields handled?
Fields in double quotes are supported; internal quotes are escaped as "".