Metadata
Welcome to the Documents hub of our Conversion API – your one‑stop solution for turning any spreadsheet into the format you need, instantly. Whether you’re juggling Apple Numbers, CSV, TSV, or classic Excel files (.xlsx, .xls), our powerful engine handles them all with lightning speed and iron‑clad security. Simply upload or point to your source file, select from an expansive list of output types, and let a single API call do the heavy lifting. No more manual copy‑pastes, no more third‑party converters – just clean, reliable results every time.
Main Features
The API’s versatility doesn’t stop at spreadsheets. Choose from a rich palette of export formats, including PDF, DOCX, PPTX, ODS, HTML, JPG, PNG, SVG, JSON, XML, ZIP, and many more. Designed with developers in mind, the service integrates effortlessly into your workflow via RESTful endpoints, complete with robust authentication and detailed error handling. Whether you need to generate reports, feed data into a business intelligence tool, or create sharable documents for clients, our Conversion API delivers consistent, high‑quality output with just one simple call. Start transforming your data today and experience the future of file conversion.
Documents
Parameters
- format: A supported output file format.
- UploadFileRequest.OperationId: This is an operation id
- UploadFileRequest.Files: These are files you need to upload them to our online services, you can prepare the data in your very own way but it must follow the standard of the html input file.
-
Send a request that includes the files and the access token Conversion API
curl -X 'POST' \ 'https://api.sheetize.cloud/conversion?format=pdf' \ -H 'accept: text/plain' \ -H 'Authorization: Bearer TheAccessToken' \ -H 'Content-Type: multipart/form-data' \ -F 'UploadFileRequest.OperationId=' \ -F 'UploadFileRequest.Files=@AFileName.xlsx;type=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' -
The service will respond with a download URL for the processed file, in this example it is:
{ "name": "", "type": "1", "size": 900000, "description": "", "linkToDownload": "/download/TheFolderName/TheFileName.pdf", "message": "", "statusCode": 200 } -
Send a request that includes the file name and the folder name to Download API
curl -X 'GET' \ 'https://api.sheetize.cloud/download/TheFolderName/TheFileName.pdf' \ -H 'accept: */*' \ -H 'Authorization: Bearer TheAccessToken' - You will receive the file and you can either use it or simply forward it to the next step of your workflow.