Aspose.Cells Cloud Web API: Spreadsheet conversion, merged, splitter, protect, data processing, etc | Developer Center

Core Functions

Aspose.Cells Cloud offers the following key features to meet enterprise-level spreadsheet automation needs:

Spreadsheet Convert

Data Processing

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:
Language Installation Method GitHub Repository
Java Maven Java SDK GitHub Repository
.NET NuGet .NET SDK GitHub Repository
Python pip Python SDK GitHub Repository
Node.js npm Node.js SDK GitHub Repository
PHP Composer PHP SDK GitHub Repository
GoLang Go Modules GoLang SDK GitHub Repository
Ruby RubyGems Ruby SDK GitHub Repository
Perl CPAN Perl SDK GitHub Repository

Code examples and open source projects

All SDKs are open-source and include rich examples: