Convert JSON arrays to CSV and CSV back to JSON. Bidirectional, supports custom delimiters, 100% browser-based.
JSON arrays are the standard output format for REST APIs and modern applications, while CSV is the standard for spreadsheets, database imports and data pipeline tools. Converting between them is a routine task in IT and data work. This tool handles both directions: JSON arrays to CSV with configurable delimiters and quote styles, and CSV back to JSON with automatic numeric type detection.
The quote style option controls how string values are quoted in CSV output. Auto mode only adds quotes when a value contains the delimiter, quotes or newlines. Always mode quotes every value, which is safer for import into strict parsers. The CSV to JSON converter automatically detects integers and floats and outputs them as JSON numbers rather than strings, which matters for applications that perform arithmetic or comparisons on the data.