JSON to CSV
Paste a JSON array of objects, get a CSV table back. Works both directions.
Converting between JSON and CSV is a routine task when moving data between an API and a spreadsheet, or preparing data for import into a tool that only accepts one format.
How it works
- Paste your dataA JSON array of objects, or a CSV table.
- Pick a directionJSON → CSV or CSV → JSON, both work.
- Copy the resultGrab the converted data straight from the box.
FAQ
What JSON shape does this expect?
An array of flat objects with the same keys, like [{"a":1,"b":2}] — nested objects and arrays inside fields aren't flattened.