CSV to JSON Converter
Convert CSV to JSON array with automatic type inference and configurable delimiters.
Frequently Asked Questions
Is the first row always treated as headers?
By default yes. You can toggle 'Header row' off to produce arrays of arrays instead of arrays of objects.
How does type inference work?
Values matching numeric patterns become numbers; 'true'/'false' become booleans; empty strings become null (if enabled). Otherwise values remain strings.