Best for
- Arrays of flat or lightly nested objects.
- Exporting data for reports or bulk edit in spreadsheets.
Paste JSON (an object or array of objects) and convert it to CSV. Headers come from object keys; nested values are stringified. Runs in your browser.
Input
[{"name":"Alice","score":95},{"name":"Bob","score":87}]Output
name,score
Alice,95
Bob,87First row is headers; each object becomes one row.
No. Conversion runs entirely in your browser. Your data never leaves your device.
Nested values are JSON-stringified in the cell. For flat spreadsheets, use shallow objects.