Text Master

by Thankless Technologies

JSON to CSV

Convert a JSON array of objects to CSV format. Object keys become column headers.

Example

[{"name":"Alice","age":30}] → name,age + Alice,30

[{"a":1,"b":2}] → a,b + 1,2

USED IN COOKBOOKS