JSON to CSV
Convert JSON array to CSV format. Paste JSON, get comma-separated output.
Result
—
Related tools
How it works
- 1Paste a JSON array of objects into the input area.
- 2The first object's keys become the CSV header row.
- 3Each object's values become a data row; nested objects are stringified.
- 4Copy or download the CSV output.
Example
Input: [{"name":"Alice","age":30},{"name":"Bob","age":25}]
Output: name,age
Alice,30
Bob,25