Quick Convert to Any Formats

Introduction

GroupDocs.Conversion Cloud REST API allows to convert the supported document formats to Any Formats and returns the output document storage URL and also support to get result as a stream or Array of stream.

Quick Convert to Any Formats with Storage URL Output

You can convert between any supported document formats and get the output as storage URL.

Resource

The following GroupDocs.Conversion Cloud REST API resource has been used in the convert to any format with Storage URL Output (quick convert) example.

cURL Example

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'}}"
 {
  "href": "https://api.groupdocs.cloud/v1.0/conversion/storage/file/conversions/sample.pdf",
  "rel": "self",
  "type": null,
  "title": null
}

SDKs

The API is completely independent of your operating system, database system or development language. We provide and support API SDKs in many development languages in order to make it even easier to integrate. You can see our available SDKs list here.

Quick Convert to Any Formats with Storage URL Output

Quick Convert to Any Formats with Stream Output

You can convert between any supported document formats and get the output as stream.

Resource

The following GroupDocs.Conversion Cloud REST API resource has been used in the convert to any format with Stream Output (quick convert) example.

cURL Example

curl -v "https://api.groupdocs.cloud/v1.0/conversion/quick/stream?outPath#conversions%2F&appsid#XXXX&signature#XXX-XX"
-H "content-type: application/json"
-X POST -d "{'format':'pdf','sourceFile':{'folder':'conversions','name':'sample.docx'}}"
 Stream of document or Array of Stream Images.

SDKs

The API is completely independent of your operating system, database system or development language. We provide and support API SDKs in many development languages in order to make it even easier to integrate. You can see our available SDKs list here.

Quick Convert to Any Formats with Stream Output