JSON to CSV Converter
Paste a JSON array of flat objects and get back clean, properly-quoted CSV, ready to open in a spreadsheet.
CSV
Perguntas frequentes
What JSON structure does this expect?
An array of objects, like [{"name":"Ada","age":30}]. Each object's keys become CSV columns, if different objects have different keys, every key seen across the array becomes a column, filled in as empty for rows missing that key.
What happens with nested objects or arrays inside a value?
Nested values are stringified as JSON text inside that cell rather than causing an error, so the conversion never crashes, though for a fully flat CSV you'll generally want to flatten nested data before converting.
How are commas and quotes inside values handled?
Any cell containing a comma, quote or newline is automatically wrapped in double quotes, with internal quotes escaped by doubling them, following standard CSV quoting rules so the file opens correctly in Excel, Google Sheets or Numbers.