Back to tools
CSV to JSON
Convert CSV data to JSON format
About CSV to JSON
CSV to JSON lets you convert csv data to json format.
Category: Converters.
Frequently asked questions
Does the first row become the JSON keys?
▾
Yes. By default the first row is treated as the header row and its values become the keys of each JSON object. Each subsequent row becomes one object in the output array.
How are numbers and booleans handled?
▾
By default all values are strings. Enable type inference to automatically convert numeric strings to numbers and 'true'/'false' strings to booleans.
What if my CSV has no header row?
▾
Disable the header option and the tool generates column0, column1, etc. as keys, or you can provide custom column names.