.NET Cloud SDK for document paraphrasing

Create .NET applications based on GroupDocs.Rewriter API focusing on business logic rather than the technical details.

  • GroupDocs.Rewriter Cloud SDK for cURL
  • GroupDocs.Rewriter Cloud SDK for .NET
  • GroupDocs.Rewriter Cloud SDK for Python
Start Free Trial

GroupDocs.Rewriter is an easy-to-use and versatile online service for rephrasing the texts with full preservation of the meaning. Its advanced AI reads and understands the text and then rephrases it in various wordings, providing a plagiarism-free result without losing the original meaning. While the background process is very complex and resource-intensive, you do not have to worry about formulas, machine learning, and load – our cloud services do all the work.

This SDK greatly simplifies the interaction of .NET code with GroupDocs.Rewriter Cloud services, allowing you to focus on business logic rather than the technical details. It handles all the routine operations such as establishing connections, sending API requests, and parsing responses, wrapping all these tasks into a few simple methods that can be used in any .NET application. The .NET SDK, demo applications, documentation, and examples are open source distributed under the MIT license. You can use them for any purpose and change any part of the code.

Advanced Document Rewriting REST API Features

Creates unique content while fully preserving the original message

Supports Microsoft Office, OpenOffice and PDF documents without additional software

Converts paraphrased documents to different formats

Processes files from URLs and public repositories

Works on any device and platform, including smartphones

API explorer based on Swagger collection

Quick start with document rewriting REST API

GroupDocs.Rewriter Cloud API for .NET comes with detailed developer guides and live code examples for all major programming languages to start working with paraphrasing features in no time. Simply create a free account at GroupDocs Cloud, get APP SID & Key information to communicate with GroupDocs Cloud API and you are ready to use the SDK.

Rewrite Word document - .NET

  //Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).

  public FileResponse RewriteDocument(Configuration conf)
  {    
      string name = "test.docx";
      string folder = "";
      string language = "en";
      string format = "docx";
      string storage = "First Storage";
      string saveFile = "translation.docx";
      string savePath = "";
      
      RewriterApi api = new RewriterApi(conf);
      RewriteDocumentRequest request = api.CreateDocumentRequest(name, folder, language, format, storage, saveFile, savePath, masters, elements);
      FileResponse response = api.RunRewritingTask(request);
      return response;
  }

Any language, platform and storage service provider

GroupDocs.Rewriter Cloud is a REST API that can easily be integrated with any language or platform, capable to manage HTTP requests and responses. It supports all popular cloud storage services such as Google Cloud, Drive, DropBox and Amazon S3 to interact without any dependencies.

Rewrite plain text - .NET

  //Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).

  public TextResponse TranslateText(Configuration conf)
  {
      string language = "en";
      string text = "The client’s mission is to make the world a healthier place and to make traveling and visiting public places safer and more comfortable for people.";
      
      RewriterApi api = new RewriterApi(conf);
      RewriteTextRequest request = api.CreateTextRequest(language, text);
      TextResponse response = api.RunRewritingTextTask(request);
      return response;
  }

Security and Authentication

The GroupDocs.Rewriter Cloud API is SSL secured and the authentication requests require a signature and AppSID query parameters or OAuth 2.0 authorization header.

Support and Learning Resources

GroupDocs.Rewriter Cloud offers SDKs for popular programming languages and platforms:

  English
4bde1f0