Convert CSV to JSON
Spreadsheets export CSV; most APIs speak JSON. The first row becomes the keys of every record — quoting and delimiter handled for you.
- Paste the CSV (header row required).
- Choose the delimiter if it is not a comma.
- Copy the JSON array, or download it as a .json file.
Ejecutar
Ejemplos
Entrada
name,role Ada,Engineer Linus,Maintainer
Salida
[
{
"name": "Ada",
"role": "Engineer"
},
{
"name": "Linus",
"role": "Maintainer"
}
]The output above was produced by actually running this tool.
Preguntas frecuentes
Is my data uploaded for "Convert CSV to JSON"?
No. The tool runs entirely in your browser — nothing is sent to any server.
Is it free?
Yes — unlimited, no sign-up, no installation.
Which tool does this use?
The CSV to JSON Converter on 26173, linked at the bottom of this page.