Header row
Input: name,role
Ada,Engineer
Output: [{"name":"Ada","role":"Engineer"}]
Developer
Convert pasted CSV or TSV into JSON arrays locally with delimiter and header controls.
Runs in your browser. Input is not uploaded or sent to an external API.
Turn pasted spreadsheet rows into JSON arrays for fixtures, examples, seed data, and quick API payload experiments.
Input: name,role
Ada,Engineer
Output: [{"name":"Ada","role":"Engineer"}]
Input: name role
Grace Compiler
Output: [{"name":"Grace","role":"Compiler"}]
Input: Ada,Engineer
Output: [["Ada","Engineer"]]
Convert a small CSV sample, then format the JSON for a test fixture.
Use JSON to CSV when you need to move a JSON array back into spreadsheet shape.
Use JSON Diff after conversion to inspect changes.
Quoted commas and escaped quotes are supported, but unusual spreadsheet exports may still need cleanup.
This paste-based converter guards large input because all parsing stays in the browser tab.
Yes. Choose tab delimiter or leave delimiter on auto for common TSV input.
Turn off header row to produce arrays instead of objects.
No. The parser runs locally in your browser.