Excel CSV Export to JSON

Use a CSV exported from Excel when you need JSON for a fixture, seed script, or API request.

A specific workflow: Excel CSV Export to JSON

Export a worksheet as CSV, then turn each row into an object without manually mapping columns.

Example input

Name,Units,Active
Ari,12,true

Expected output

[
  { "Name": "Ari", "Units": 12, "Active": true }
]

How to use CSV to JSON

  1. Paste or upload your CSV

    Paste CSV text or open one or more .csv files exported from Excel, Google Sheets or a database client. Everything stays on your machine.

  2. Headers become JSON keys

    The first row is read as the header row and each column name becomes a property on every record. Switch to the Table view first if you want to sanity-check how the columns were detected.

  3. Copy or download the JSON

    Get back a formatted array of objects you can paste straight into a test fixture, a seed script or an API request body.