Convert CSV to JSON

Spreadsheets export CSV; most APIs speak JSON. The first row becomes the keys of every record — quoting and delimiter handled for you.

  1. Paste the CSV (header row required).
  2. Choose the delimiter if it is not a comma.
  3. Copy the JSON array, or download it as a .json file.

執行

範例

輸入

name,role
Ada,Engineer
Linus,Maintainer

輸出

[
  {
    "name": "Ada",
    "role": "Engineer"
  },
  {
    "name": "Linus",
    "role": "Maintainer"
  }
]

以上输出由该工具真实执行产生。

常見問題

Is my data uploaded for "Convert CSV to JSON"?

No. The tool runs entirely in your browser — nothing is sent to any server.

Is it free?

Yes — unlimited, no sign-up, no installation.

Which tool does this use?

The CSV to JSON Converter on 26173, linked at the bottom of this page.

工具