Convert Spreadsheet to CSV
Upload an .xlsx file. All values are preserved as strings β
no numeric coercion, no data loss.
Drag & drop your .xlsx file here
or
Max 30 MB
file.xlsx
Convertingβ¦
Conversion complete
API usage (curl / n8n)
# Convert β requires X-API-Key header
curl -X POST https://converter.govoltmobility.com/convert \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@report.xlsx" \
--output report.csv
# Select a specific sheet
curl -X POST https://converter.govoltmobility.com/convert \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@report.xlsx" \
-F "sheetName=Sheet2" \
--output sheet2.csv
# List sheets
curl -X POST https://converter.govoltmobility.com/sheets \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@report.xlsx"