JSON to CSV Converter

Convert JSON to CSV instantly in your browser. Paste a JSON array of objects below, and this free tool will turn it into CSV output immediately.

How It Works

This tool expects a JSON array of objects. It collects the object keys into CSV headers and then writes each object as a row.

JSON Example

[
  {
    "name": "Alice",
    "age": "30",
    "city": "New York"
  },
  {
    "name": "Bob",
    "age": "25",
    "city": "Chicago"
  }
]

CSV Output Example

name,age,city
Alice,30,New York
Bob,25,Chicago

Need the reverse conversion? Try our CSV to JSON converter.