Next Generation GroupDocs.Conversion Cloud 17.12 REST API is released for public use with the hard work and devotion of GroupDocs team to facilitate developer community to enhance their productivity with less effort. The GroupDocs.Conversion Cloud is a platform agnostic document conversion REST API, that can be integrated with any development language. This API can be consumed in your applications for flawless performance and document conversion features utilization. It supports over 50 document and image formats, please click here for further details.

GroupDocs.Conversion Cloud - Features

GroupDocs.Conversion Cloud is a REST API for converting over 50 documents and image formats to Words, Cells, Html, PDF, Slides and Image formats for the whole document, page by page or custom range of pages. Some major features are as following. You may visit release notes for complete details.

A Quick Conversion Example

You can quickly convert the document into other supported formats, here is a quick example of DOCX to PDF conversion using GroupDocs.Conversion Cloud API.

cURL Example

**Request**
`curl -v "https://api.groupdocs.cloud/v1.0/conversion/quick?outPath=conversions%2F&appsid=XXXX&signature=XXX-XX"
-H "content-type: application/json"
-X POST -d "{'format':'pdf','sourceFile':{'folder':'conversions','name':'sample.docx'}}"`
**Response**
 `{
  "href": "https://api.groupdocs.cloud/v1.0/conversion/storage/file/conversions/sample.pdf",
  "rel": "self",
  "type": null,
  "title": null
}`

Please click here to try this on our API Explorer.

GoupDocs.Conversion Cloud API .NET SDK Example

var configuration = new Configuration
{
    AppSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    AppKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
};

// Initiate api instance
var apiInstance = new ConversionApi(configuration);

try
{
    // convert to any format (quick convert) request
    var request = new QuickConvertRequest
    {
        // quick conversion settings
        Settings = new QuickConversionSettings
        {
            // source file to convert
            SourceFile = new ConversionFileInfo() { Folder = "conversions", Name = "sample.docx", Password = "" },
            // quick convert format
            Format = "pdf"
        }
    };

    // convert to specified format
    var response = apiInstance.QuickConvert(request);
    Debug.Print(response.Href.ToString());
}
catch (Exception e)
{
    Debug.Print("Exception when calling ConversionApi.QuickConvert: " + e.Message);
} 

API Explorer

The GroupDocs Cloud provides an Web API explorer to try out our API right away in your browser. It is a collection of Swagger documentation for the GroupDocs Cloud APIs. Using Web API explorer, you can get information about all the resources in the API. It also provides testing and interactivity to our API endpoint documentation. Please click here for further details.

SDKs

GroupDocs.Conversion Cloud API is providing SDKs to use its features in your favorite platform such as .NET. The SDKs are hosted on our GitHub repository along with working examples, to get you started in no time.

GroupDocs.Conversion Cloud API Resources

You may visit the following API resources for getting started and working with the API.

Start a Free Trial Today

Start a free trial today – all you need is to sign up with the GroupDocs Cloud service. Once you have signed up, you are ready to try the powerful file processing features offered by GroupDocs Cloud.