Drop in an Excel file, get JSON back. Runs entirely in your browser -- your spreadsheet never leaves your device.
Drop your Excel file here
or click to browse files
JSON output will appear here
Upload an Excel file on the left
Someone sends you an Excel file. You need that data in your web app, your API, or your database. Step one is getting it into JSON. That's what this tool does -- upload the file and get clean JSON you can drop straight into your code. No need to write a parser or install a library. If you need to go the other way, there's the JSON to Excel converter.
Array of Objects mode gives you [{column1: value, column2: value}] -- ready for API endpoints, database inserts, or React state. Array of Arrays mode gives you the raw grid -- useful when you're processing headers separately or feeding data into a charting library.
The SheetJS library parses the Excel file locally in your browser. No upload, no server processing. If you're working with internal company data, customer lists, or financial reports, that matters. For Markdown output instead of JSON, check out the Excel to Markdown converter.
Your client gave you a product catalog in Excel. You need it in your React app. Convert to JSON here, drop it into your project as a .json file or paste it into your database seed script. Way faster than writing a custom importer.
Need to populate a MongoDB collection or seed a PostgreSQL table? Convert the Excel file to JSON, then feed it into your migration script or mongo import command. The Array of Objects format maps directly to document database entries.
QA maintains test cases in a spreadsheet. Convert that to JSON and you've got test fixtures your test framework can read directly. Update the spreadsheet, re-convert, and your tests stay in sync with the test plan.
Translators work in spreadsheets. Your app needs JSON. Convert the translations spreadsheet to JSON, restructure the keys in your code, and you've got an i18n file. Update it any time a new batch of translations comes in.
Need the reverse? Turn JSON back into a spreadsheet
Get Markdown tables from your Excel files
JSON arrays straight to Markdown table format
Got CSV? Turn it into Markdown tables
Markdown tables to downloadable spreadsheets
Pull JSON data out of Markdown tables