What does this JSON to CSV converter do?
It parses JSON, flattens object fields, collects the available keys, and writes a CSV table with escaped cells.
Convert JSON arrays into CSV output for download-style mock data workflows and spreadsheet inspection.
Paste a JSON array of objects or a single object.
Converted CSV appears after a short delay.
id,customer,total,status ord_7721,Avery Stone,126.5,paid ord_7722,Mina Park,84,processing
It parses JSON, flattens object fields, collects the available keys, and writes a CSV table with escaped cells.
A JSON array of objects works best. A single object is also accepted and converted into one CSV row.
Nested object keys are flattened with dot notation, while array values are kept as JSON strings inside the CSV cell.
Convert CSV rows into JSON arrays for mock data imports, quick API fixtures, and prototype datasets.
Paste JSON and format it with consistent indentation after a short debounce delay.
Convert Unix timestamps into ISO dates, local dates, seconds, and milliseconds for API, log, and test data workflows.