Sheet with header row + type coercion
Input: Excel sheet: | id | name | active | |----|-------|--------| | 1 | Alice | true | | 2 | Bob | false |
Output: [ { "id": 1, "name": "Alice", "active": true }, { "id": 2, "name": "Bob", "active": false } ]
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Convert Excel XLSX or XLS files to JSON array. Sheet picker, header-row detection, optional type coercion.
XLSX to JSON converts Excel workbooks (.xlsx, .xls) into a JSON array that any modern API or database can consume. Upload a workbook, pick which sheet to convert, choose whether the first row is a header (used as object keys) or whether to auto-name columns col1, col2, …, and optionally coerce numeric and boolean strings into native JSON numbers and booleans (so "42" becomes 42 and "true" becomes true). The tool uses SheetJS, an industry-standard library for parsing Excel binary formats, loaded on-demand from CDN. The whole conversion runs in your browser via the File API — your spreadsheet never reaches a remote server, which is essential when data contains customer records, financial figures, or competitive intelligence. Output JSON is pretty-printed for readability and can be copied to clipboard or downloaded as a .json file directly.
Input: Excel sheet: | id | name | active | |----|-------|--------| | 1 | Alice | true | | 2 | Bob | false |
Output: [ { "id": 1, "name": "Alice", "active": true }, { "id": 2, "name": "Bob", "active": false } ]
Input: Excel sheet: | Alice | 30 | | Bob | 28 |
Output: [ { "col1": "Alice", "col2": 30 }, { "col1": "Bob", "col2": 28 } ]
Input: Excel sheet: | zip | qty | | 01234 | 5 |
Output: [ { "zip": "01234", "qty": "5" } ]