Compare Word or PDF files using cURL SDK

Powerful cURL command line tool to compare files in PDF, Word, HTML, TXT, MD and other formats

Use cURL command line tool to use our file difference checker, compare two documents and see the differences between them clearly shown in the output. You no longer need to compare your documents manually. Also note that the comparison result can be exported to a DOCX, PDF, DOC and others.

View code snippet

Comparing two files in cURL

Our cURL solution is designed to give you the best possible results when using a complex comparison algorithm. So, you no longer need to manually look up differences in documents – feel free to use our API to diff two files.

Our comparison engine looks for differences at the level of characters or whole words. And if only one character was changed, the whole word will be highlighted as changed. All found changes can be clearly viewed in the output and exported in a convenient format.

The most popular types of comparison are comparing PDF and Word files. Therefore, we will learn our cURL diff tool and its comparison function using these examples.

Compare PDF in cURL

Sometimes you need to make sure that your PDF document has not been modified and compare it with the original version. Or you already know that your PDF has really changed, and you need to look where and how. Then you can compare two versions of PDF files and see the differences. And to avoid doing it manually, just use our cURL diff checker API.

With our cURL solution, you will see even small changes that you could easily miss in a manual comparison.

Compare two Word documents using cURL

Word documents are fairly easy to change, so it is important to compare Word files to make sure parts or the entire document have not changed.

To compare Word files, use our cURL solution, just like with PDF. You can do this in the example below.

Сompare two documents

To see how our cURL document compare works, load two files you want to compare and choose an export file format.

After the comparison is completed, the document with the diff will be automatically downloaded in the format you selected.

It is important that the documents being compared must not have any revisions before the comparison, so we need to accept all revisions before the compare starts. Do not worry, we have taken care of that in our example:

Upload the compared file
Run code
Upload the second file to compare
Select the target format from the list
//  Upload documents to cloud storage.
curl -v "https://api.aspose.cloud/v4.0/words/storage/file/Input1.docx" \
     -X PUT \
     -H "Content-Type: multipart/form-data" \
     -H "Authorization: Bearer ####################" \
     -F FileContent="@%FileName1%"

curl -v "https://api.aspose.cloud/v4.0/words/storage/file/Input2.docx" \
     -X PUT \
     -H "Content-Type: multipart/form-data" \
     -H "Authorization: Bearer ####################" \
     -F FileContent="@%FileName2%"

//  Compare documents in cloud.
curl -v "https://api.aspose.cloud/v4.0/words/Input1.docx/compareDocument?destFileName=Output.docx" \
     -X PUT \
     -H "Content-Type: application/json" \
     -H "Authorization: Bearer ####################" \
     -d "{\"Author\":\"author\",\"ComparingWithDocument\":\"Input2.docx\"}"

//  Download result document from cloud storage.
curl -v "https://api.aspose.cloud/v4.0/words/storage/file/Output.docx" \
     -X GET \
     -H "Content-Type: application/json" \
     -H "Authorization: Bearer ####################" \
Run code
  
Copy cURL code to the clipboard

How to Compare two versions of a file

  1. Install cURL
  2. Get your app keys to use Aspose.Words Cloud for cURL
  3. Pass the Bearer token in the Authorization header
  4. Load two documents to compare
  5. Call the /compareDocument method to compare two docs
  6. Download the result document from the cloud storage

cURL library to use compare

Download and install the curl utility. Please follow these Instructions to quickly get the necessary security credentials and access our REST API.

System Requirements

There are no special requirements for using this tool.

Most popular formats for compare operations

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

© Aspose Pty Ltd 2001-2024. All Rights Reserved.