JSON to CSV
Turn an array of JSON objects into CSV. Columns are collected from every row, so uneven objects still convert cleanly.
JSON
an array of objectsCSV
The CSV appears here as you type.
Send toTable Manager
Jump to any tool or page
Turn an array of JSON objects into CSV. Columns are collected from every row, so uneven objects still convert cleanly.
The CSV appears here as you type.
Turn a JSON array of objects into CSV, flattening nested structures into dot-notation columns along the way. The genuinely hard problem is that JSON is a tree and CSV is a rectangle: arrays of varying length, heterogeneous records, and nested objects all need a lossy decision, and the interesting question is which one the converter makes.