CSV to JSON Converter Convert your data

 

Input Data

Output Data
        
 

 

Description

CSV

A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format.

CSV Example

Name,Address,Phone
Deidre Haider,"631 Grand Avenue Glendora, CA 91740",202-555-0150
Annette Sharrock,"230 Railroad Avenue Myrtle Beach, SC 29577",202-555-0149
Ebonie Skowron,"762 Deerfield Drive Romeoville, IL 60446",202-555-0155
Devon Huynh,"573 Hudson Street Wooster, OH 44691",202-555-0196

JSON

JavaScript Object Notation (JSON) is an open standard file format, and data interchange format, that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and array data types (or any other serializable value). It is a very common data format, with a diverse range of applications, such as serving as a replacement for XML in AJAX systems.

JSON Example

[
  {
    "Name":"Deidre Haider",
    "Address":"631 Grand Avenue Glendora, CA 91740",
    "Phone":"202-555-0150"
  },
  {
    "Name":"Annette Sharrock",
    "Address":"230 Railroad Avenue Myrtle Beach, SC 29577",
    "Phone":"202-555-0149"
  },
  {
    "Name":"Ebonie Skowron",
    "Address":"762 Deerfield Drive Romeoville, IL 60446",
    "Phone":"202-555-0155"
  }
]

 

Source