Back to tools
/
JSON ↔ CSV
Ctrl
K
EN
JSON ↔ CSV
Convert array of objects to CSV and CSV to JSON
Sample
Copy
Clear
JSON → CSV
CSV → JSON
Delimiter
Comma (,)
Semicolon (;)
Tab (\t)
JSON Input
[ { "id": 1, "name": "Antigravity", "role": "AI Assistant", "active": true }, { "id": 2, "name": "Byte", "role": "Developer", "active": true }, { "id": 3, "name": "Neo", "role": "Architect", "active": false } ]
CSV Output
id,name,role,active 1,Antigravity,AI Assistant,true 2,Byte,Developer,true 3,Neo,Architect,false