Download JSON Data As CSV File Example

An ultra-light JSON to CSV converter tool that helps you export JSON data into a CSV file.

header = {
    name: "Fullname",
    age: "Age",
    designation: "Designation",
    role: "Profession",
    education: "Study",
    hometown: "Current City",
    email: "Email Address",
    post: "Total Post",
  };
[
    {
      name: "Shahan Chowdhury",
      age: "26",
      designation: "Mr.",
      role: "Software Engineer",
      education: "Computer Science and Engineering",
      hometown: "Sylhet",
      email: "[email protected]",
      post: 27,
    },
    {
      name: "Rayhan Chowdhury",
      age: "31",
      designation: "Mr.",
      role: "Test Engineer",
      education: "CS",
      hometown: "Sylhet",
      email: "[email protected]",
      post: 25,
    },
  ];