Array of objects
Input: [{"name":"Ada","role":"Engineer"}]
Output: name,role
Ada,Engineer
Developer
Convert JSON arrays or objects to CSV locally with flattening and quote controls.
Runs in your browser. Input is not uploaded or sent to an external API.
Move JSON arrays into CSV shape for spreadsheet review, QA fixtures, and lightweight data handoffs.
Input: [{"name":"Ada","role":"Engineer"}]
Output: name,role
Ada,Engineer
Input: {"user":{"name":"Ada"}}
Output: user.name
Ada
Input: [{"a":"x,y"}]
Output: "a"
"x,y"
Turn small JSON arrays into CSV rows that product and QA can scan.
Validate pasted JSON before converting it.
Diff two JSON payloads before exporting the final version.
Deep arrays are stringified in cells. Complex data may need manual modeling.
Very large JSON can be slow because conversion is intentionally local.
Yes. A single object is treated as one CSV row.
Flattening uses dot paths such as profile.role.
No. Output is created locally for copy from the page.