Improve Your AI Skills: Learn Excel Translation, Task Breakdown, and More

Contents
[ ]

Aspose.Cells Cloud AI provides three powerful AI‑driven services that simplify working with Excel and text data: Decompose User Task, Translate Spreadsheet, and Translate Text File. These APIs enable developers to programmatically break down complex user objectives into actionable steps, translate entire workbooks or plain‑text files, and integrate the results into custom applications. Use the endpoints below to get started quickly, and refer to the detailed request/response specifications provided for each service.

  • Decompose User Task – Convert user objectives into sequential action plans with Aspose.Cells Cloud AI.

    • Request Method: POST
    • Endpoint URL: https://api.aspose.cloud/v4.0/cells/ai/decompose-task
    • Headers: Authorization: Bearer <access_token>, Content-Type: application/json
    • Request Body (JSON):
      {
        "task": "Generate a quarterly sales report with charts and pivot tables"
      }
      
    • Response: Return the spreadsheet file with the task list as a downloadable file.
    • Status Codes: 200 OK, 400 Bad Request, 401 Unauthorized, 500 Internal Server Error
  • Translate Spreadsheet – Translate an entire spreadsheet using Aspose.Cells Cloud AI.

    • Request Method: POST
    • Endpoint URL: https://api.aspose.cloud/v4.0/cells/ai/translate-spreadsheet
    • Headers: Authorization: Bearer <access_token>, Content-Type: multipart/form-data
    • Request Parameters:
      • file – The Excel file to translate (binary).
      • targetLanguage – ISO language code (e.g., fr, de).
    • Response: Returns the translated workbook as a downloadable file.
    • Status Codes: 200 OK, 400 Bad Request, 401 Unauthorized, 415 Unsupported Media Type, 500 Internal Server Error
  • Translate Text File – Translate an entire text file using Aspose.Cells Cloud AI.

    • Request Method: POST
    • Endpoint URL: https://api.aspose.cloud/v4.0/cells/ai/translate-text
    • Headers: Authorization: Bearer <access_token>, Content-Type: multipart/form-data
    • Request Parameters:
      • file – The text file to translate (binary).
      • targetLanguage – ISO language code (e.g., es, ja).
    • Response: Returns the translated text file.
    • Status Codes: 200 OK, 400 Bad Request, 401 Unauthorized, 415 Unsupported Media Type, 500 Internal Server Error