CSV → JSON
Paste CSV with a header row and get a clean JSON array. The first row becomes the object keys. Runs locally — nothing is uploaded.
JSON output
[
{
"name": "Ada",
"email": "ada@example.com"
},
{
"name": "Linus",
"email": "linus@example.com"
}
]