Convert JSON to CSV
Convert JSON format to comma-separated CSV format.
This tool allows you convert data from JSON (JavaScript Object Notation) to the CSV format. It expects data to be in the form of a JSON array, with each array item holding an object of name/value pairs that represent the columns in the resulting CSV file and the values of each field. The names from each object becomes the header row of the CSV file (the first line of the file), and the values each become a value in their respective row in the CSV file, under the right column title. CSV (comma-separated values) is more compact than JSON, since it stores column titles only once.
Upload content to begin.