JSON to CSV Converter
Pricing
Pay per usage
Go to Apify Store
JSON to CSV Converter
Convert JSON data to CSV format instantly. Handles nested structures, auto-detects delimiters. Used by data professionals worldwide.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Anas Hossam
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Convert JSON data to CSV format. This Actor takes an array of JSON objects and converts them to a CSV file, flattening nested structures automatically.
Features
- Automatic flattening of nested JSON objects
- Handles arrays by converting them to JSON strings
- Preserves all data types
- Returns CSV content and metadata (row/column counts)
Input
json_data: Array of JSON objects to convert
Output
csv: The converted CSV content as a stringrow_count: Number of rows in the CSVcolumn_count: Number of columns in the CSV
Usage
- Provide an array of JSON objects
- Run the Actor
- Get the CSV output in the dataset
Example
Input:
[{"name": "John", "age": 30, "city": "New York"},{"name": "Jane", "age": 25, "city": "London"}]
Output:
name,age,cityJohn,30,New YorkJane,25,London