XLSX β†’ CSV

Enter your password to continue

Incorrect password. Please try again.

Govolt Mobility Β· Internal tool

XLSX β†’ CSV ETL Ready
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

Colonne da includere nel CSV, separate da virgola (es. A,C,E o Name,Price,SKU). Vuoto = tutte.

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

# Include only specific columns
curl -X POST https://converter.govoltmobility.com/convert \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@report.xlsx" \
  -F "includeCols=Name,Price,SKU" \
  --output report.csv

# List sheets
curl -X POST https://converter.govoltmobility.com/sheets \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@report.xlsx"
All conversions happen server-side. Files are not stored.