CSV to JSON Converter

[
  {
    "name": "Ada",
    "role": "Engineer",
    "city": "London"
  },
  {
    "name": "Grace",
    "role": "Admiral",
    "city": "New York"
  }
]
Parsed locally in your browser. Your CSV stays only on this page.

Turn CSV into a JSON array

Paste a spreadsheet export or CSV fixture and get a pretty-printed JSON array to drop into a payload, seed file, or test. With the header toggle on, each row becomes an object keyed by the header names; turn it off to get an array of arrays. Quoted fields with commas, newlines, and escaped quotes are handled, and every value stays a string.