Automate spreadsheet rotation using cURL and our cloud-based API. Whether you're working with Excel (.xlsx, .xls, .xlsm), CSV (.csv), TSV (.tsv), or Apple Numbers (.numbers), this solution lets you upload a file and rotate its layout—all with a simple command-line call. Choose from 90°, 270°, or swap rows and columns. Ideal for developers, analysts, and DevOps teams, cURL offers a lightweight, scriptable way to reorient spreadsheet content without relying on GUIs or browser-based tools.
With cURL, you can integrate spreadsheet rotation into shell scripts, CI/CD pipelines, or remote server workflows. Upload files via multipart/form-data, specify rotation options, and receive transformed outputs—all from your terminal. This method ensures fast, secure, and scalable layout transformation with minimal dependencies.
Command-line simplicity: Use cURL to send spreadsheet files directly to our cloud API for rotation. No SDKs, wrappers, or GUIs—just transformed content with a few lines of terminal code. Ideal for automation, scripting, and remote operations.
Versatile rotation: Rotate by 90°, 270°, or swap rows and columns. Reorient spreadsheet layout to suit your workflow or presentation needs.
Seamless integration: Easily embed into CI/CD workflows, cron jobs, or shell scripts. cURL’s cross-platform compatibility makes it perfect for Linux, macOS, and Windows environments.
Secure and scalable: All file transfers are encrypted, and the API scales from small rotation jobs to enterprise-grade transformation pipelines. Rotate spreadsheet content at speed with full control over headers, tokens, and responses.
curl -X POST "https://api.sheetize.cloud/rotate" \
-F "UploadFileRequest.File=@/path/to/spreadsheet-file.xlsx" \
-F "AppRequest.Target=270"
Rotation Modes:
90 → Rotate 90° clockwise270 → Rotate 270° clockwiserow → Rotate row-wisecol → Rotate column-wiserow2col → Swap rows to columns (transpose)