JSON ↔ CSV

Convert JSON to CSV

Frequently Asked Questions

How to convert JSON to CSV?
Paste your JSON array into the converter. Each JSON object becomes a CSV row, and object keys become column headers. Nested objects are flattened with dot notation (e.g., user.name becomes a column).
What JSON format is supported?
The tool supports JSON arrays of objects: [{"name":"John","age":30}]. Each object should have the same structure. Nested objects and arrays are supported but will be flattened or stringified.
Can I customize CSV output?
Yes, you can typically choose delimiter (comma, semicolon, tab), quote character, and whether to include headers. Some tools also support selecting specific fields or flattening nested structures differently.