Get Supported File Formats
GroupDocs.conversion Cloud REST APIs support document conversion tools to convert files from 65+ supported formats to get high-quality output in quickly and reliably. To get a list of supported formats, You can use the below API.
Resource
The following GroupDocs.conversion Cloud REST API resource has been used in the Supported File Formats example.
cURL Example
curl -X GET "https://api.groupdocs.cloud/v2.0/conversion/formats" -H "accept: application/json" -H "authorization: Bearer [Access Token]"
[
{
"sourceFormat": "doc",
"targetFormats": [
"ods",
"xls",
"xlsx",
"xlsm",
"xlsb",
"csv",
"xls2003",
"xltx",
"xltm",
"tsv",
"tiff",
"tif",
"jpeg",
"jpg",
"png",
"gif",
"bmp",
"ico",
"psd",
"svg",
"webp",
"jp2",
"pdf",
"epub",
"xps",
"ppt",
"pps",
"pptx",
"ppsx",
"odp",
"otp",
"potx",
"potm",
"pptm",
"ppsm",
"doc",
"docm",
"docx",
"dot",
"dotm",
"dotx",
"rtf",
"txt",
"odt",
"ott",
"html"
]
},
...
]
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.
Get All Supported Formats For Provided Document
Get All Supported Formats For Provided Document Extension
GroupDocs.Conversion Cloud supports functinality to get a list of supported formats from provided document extension, You can use the below API.
Resource
The following GroupDocs.conversion Cloud REST API resource has been used in the Supported File Formats example.
cURL Example
curl -X GET "https://api.groupdocs.cloud/v2.0/conversion/formats?format#docx" -H "accept: application/json" -H "authorization: Bearer [Access Token]"
[
{
"sourceFormat": "docx",
"targetFormats": [
"ods",
"xls",
"xlsx",
"xlsm",
"xlsb",
"csv",
"xls2003",
"xltx",
"xltm",
"tsv",
"tiff",
"tif",
"jpeg",
"jpg",
"png",
"gif",
"bmp",
"ico",
"psd",
"svg",
"webp",
"jp2",
"pdf",
"epub",
"xps",
"ppt",
"pps",
"pptx",
"ppsx",
"odp",
"otp",
"potx",
"potm",
"pptm",
"ppsm",
"doc",
"docm",
"docx",
"dot",
"dotm",
"dotx",
"rtf",
"txt",
"odt",
"ott",
"html"
]
}
]
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.