JSON ↔ CSV

Convert between JSON arrays and CSV format

Input

About JSON ↔ CSV

JSON → CSV — converts an array of objects into comma-separated values. The first object determines the column headers. Nested objects and arrays are stringified.

CSV → JSON — converts CSV data back into a JSON array of objects. The first row is treated as headers. All values are parsed as strings.

CSV export handles commas, quotes, and newlines in cell values with proper escaping.