JSON → CSV

JSON 配列をスプレッドシート用 CSV に

JSON入力

Loading editor...

CSV出力

Loading editor...

Turn JSON arrays into spreadsheet-ready rows

JSON is great for APIs but most analysts, ops teams, and stakeholders work in spreadsheets. Converting an array of JSON objects to CSV produces a clean header row and one record per line — ready for Excel, Google Sheets, BI tools, or any data pipeline that speaks CSV.

Use the converter when you need to

Export an API response to a spreadsheet

Take an array of records from an endpoint or export and hand it to anyone who lives in Excel or Sheets.

Flatten nested data for analysts

Nested objects collapse to dot-notation columns so analysts can work with the data without writing code.

Prepare bulk imports for other systems

Many CRMs, marketing tools, and databases accept CSV uploads but not JSON — convert first to bulk-load records.

How to convert JSON to CSV quickly

  1. 1

    Paste a JSON array of objects into the editor.

  2. 2

    Click Convert to extract column headers from the keys and produce one CSV row per object.

  3. 3

    Copy the CSV or download a .csv file for direct use in spreadsheets.

Common JSON-to-CSV workflows

Share API data with non-developer teams

Export users, orders, or events from a debug session into a CSV your colleagues can sort and filter.

Bulk-import records into another tool

Convert API output into the CSV format your CRM, mailing list, or admin panel expects.

Snapshot data for reporting

Save weekly or monthly exports as CSV files so the numbers stay reproducible later.

関連ツール

よくある質問

オブジェクト配列のJSONを貼り付けて「Convert」をクリックします。ツールがキーから列ヘッダーを自動抽出し、CSVの行を生成します。ネストしたオブジェクトはドット記法でフラット化します(例:address.city)。

[{"name":"Alice","age":30},{"name":"Bob","age":25}] のような、フラットなオブジェクトの配列が最適です。ネストしたオブジェクトはフラット化され、オブジェクト内の配列はセミコロンで連結されます。

はい。変換後に「Download」をクリックすると、.csvファイルをExcel、Google Sheets、LibreOffice Calcなどの表計算ソフトでそのまま開けます。

ドット記法でフラット化されます。たとえば {"user":{"name":"Alice"}} は user.name という列になります。深いネストも展開され、個別の列として出力されます。