CSVJSON

Convert data in CSV format to JSON format. As in the example below, paste CSV on the left and the JSON result appears instantly on the right.

Example

CSV
id,name,role
1,Ada,admin
2,Linus,editor
JSON
[
  { "id": 1, "name": "Ada", "role": "admin" },
  { "id": 2, "name": "Linus", "role": "editor" }
]
Open this converter

How to Convert

  1. Select CSV as the source format and JSON as the target format.
  2. Paste your CSV data into the input box on the left.
  3. Copy or download the JSON result generated on the right.

Notes

Related Conversions