What This Tool Does
This tool converts JSON data (including deeply nested objects and arrays) into a flat CSV format suitable for spreadsheets, databases, or data analysis.
How It Works
Input Format
Output Format
When to Use This Tool
- Exporting API responses to Excel.
- Converting MongoDB/NoSQL exports to relational format.
- Flattening nested data for data analysis.
Frequently Asked Questions
Nested objects are flattened using dot notation. For example, {contact: {email: 'a@b.com'}} becomes column 'contact.email'.
You can choose to stringify arrays as JSON, expand them to multiple rows, or take only the first element.