JSON to CSV Converter
The JSON to CSV converter turns an array of JSON objects into delimited rows with a header line. Nested objects are flattened into dot-separated columns, arrays can be flattened or written as inline JSON, and the union of all keys is used so no field is lost.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the JSON to CSV Converter
- Paste a JSON array of objects, or load a .json file.
- Choose how nested objects and arrays should be represented.
- Pick a delimiter — use semicolons if your spreadsheet locale expects them.
- Download the CSV, ticking the BOM option if Excel garbles accented characters.
Example
[{"name":"Ada","address":{"city":"London"}}]
name,address.city Ada,London
Common use cases
- Getting an API response into a spreadsheet for a colleague who does not read JSON.
- Preparing a bulk-import file for a CRM or advertising platform.
- Producing a flat report from a nested configuration or export file.
- Diffing two API responses by converting both to CSV and sorting them.
Limitations and things to watch for
- The input must be an array of objects, or a single object which is treated as one row. Deeply irregular JSON — an array of arrays of mixed types — has no natural tabular shape and will produce a wide, sparse table.
- Columns are the union of every key found across all records, so records missing a key get an empty cell rather than being rejected.
- CSV has no type system: every value becomes text, and quoting is applied wherever the delimiter, a quote or a line break appears in a value.