Aspose.Cells Cloud Web API: Spreadsheet conversion, merged, splitter, protect, data processing, etc | Developer Center
Contents
[
Hide
]
Core Functions
Aspose.Cells Cloud offers the following key features to meet enterprise-level spreadsheet automation needs:
Spreadsheet Convert
Data Processing
- Merge Spreadsheets
- Split Spreadsheets
- Delete Spreadsheet blank rows
- Delete Spreadsheet blank columns
- Replace Spreadsheet content
Quick Integration Guide
Step 1: Get API Credentials
Step 2: Call Spreadsheet Web APIs with SDK(recommended)
It is recommended to use the official SDK to simplify the authentication and request process.
Install SDK (using .NET as an example)
dotnet add package Aspose.Cells-Cloud --version 25.8.0
Example: Convert Excel to PDF with SDK
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
cellsApi.ConvertSpreadsheet(new ConvertSpreadsheetRequest { Spreadsheet = "EmployeeSalesSummary.xlsx", format = "pdf" }, "EmployeeSalesSummary.pdf");
Description
- Spreadsheet: The Excel file name that must be in the local storage.
- Format: Target format. e.g. pdf, png, csv, json, etc.
- Output file wTll be saved to the local location.
Support SDKs(Available SDKs)
- Aspose.Cells Cloud offers SDKs** in multiple languages, ready to use:
- API Endpoint: Aspose.Cells Cloud Spreadsheet Web API Reference
Code examples and open source projects
All SDKs are open-source and include rich examples: