FatBabyAPIFatBabyAPI
Spreadsheets API
Convert, inspect, merge, and split Excel workbooks with one API key and the same credit wallet.
Capabilities
8 live sync operations under /v1/sheets.
XLSX info
1 crInspect workbook sheets, row counts, and size
/v1/sheets/xlsx-infoXLSX to CSV
1 crConvert a worksheet to CSV text
/v1/sheets/xlsx-to-csvCSV to XLSX
1 crConvert CSV text or file to an XLSX workbook
/v1/sheets/csv-to-xlsxXLSX to JSON
1 crConvert a worksheet to header + row objects
/v1/sheets/xlsx-to-jsonJSON to XLSX
1 crBuild an XLSX workbook from row objects or multi-sheet input
/v1/sheets/json-to-xlsxMerge sheets
2 crCombine worksheets from multiple XLSX files into one workbook
/v1/sheets/merge-sheetsSplit sheets
2 crSplit each worksheet into its own XLSX (base64 JSON map)
/v1/sheets/split-sheetsValidate workbook
1 crValidate XLSX structure against size/sheet/row limits
/v1/sheets/validateQuick example
Convert an XLSX worksheet to JSON.
curl -X POST https://thefatbaby.com/api/v1/sheets/xlsx-to-json \
-H "Authorization: Bearer fb_live_YOUR_KEY" \
-F "file=@workbook.xlsx"
# → { "sheet": "Sheet1", "headers": [...], "rows": [...] }