JSON to CSV Converter avatar

JSON to CSV Converter

Pricing

Pay per usage

Go to Apify Store
JSON to CSV Converter

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

Anas Hossam

Maintained by Community

Actor 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 string
  • row_count: Number of rows in the CSV
  • column_count: Number of columns in the CSV

Usage

  1. Provide an array of JSON objects
  2. Run the Actor
  3. 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,city
John,30,New York
Jane,25,London