PDF from Doc, DocX, RTF, TXT, XPS (Document to PDF)
Description: Convert DOC, DOCX, RTF, TXT, XPS files into PDF. GET
or POST
request.
Status Errors
Code | Description |
---|---|
200 | The request has succeeded |
400 | bad input parameters |
401 | unauthorized |
403 | not enough credits |
405 | Timeout error. To process large documents or files please use asynchronous mode ( set async parameter to true) and then check the status using /job/check endpoint. If a file contains many pages then specify a page range using pages parameter. The number of pages of the document can be obtained using the endpoint /pdf/info |
Example
Sample Request:
! Don’t forget to set x-api-key
url param or http header param (preferred) to API key, get yours here
POST
{
"name" : "result.pdf",
"url" : "pdfco-test-files.s3.us-west-2.amazonaws.comdoc-to-pdf/sample.docx"
}
Available Methods
[POST] /pdf/convert/from/doc
Attributes |
---|
url required URL to the source file. Supports links from Google Drive, Dropbox, and PDF.co built-in files storage. To upload files via API, Check out the Files Upload section. Note: If you experience intermittent Too Many Requests or Access Denied errors, please try to add cache: to enable built-in URL caching. (e.g cache:https://example.com/file1.pdf ) For data security, you have the option to encrypt output files and decrypt input files. Learn more about user-controlled data encryption. |
httpusername optional HTTP auth user name if required to access source url . |
httppassword optional HTTP auth password if required to access source url . |
pages optional Comma-separated list of page indices (or ranges) to process. IMPORTANT: The very first page starts at 0 (zero). To set a range use the dash - , for example: 0,2-5,7- . To set a range from the index to the last page use range like this: 2- (from page #3 as the index starts at zero and till the of the document). For ALL pages just leave this param empty.Example: 0,2-5,7- means first page, then 3rd page to 6th page, and then the range from 8th (index = 7 ) page till the end of the document, The input must be in string format. |
name optional File name for the generated output, The input must be in string format. |
expiration optional Set the expiration time for the output link in minutes ( default is 60 i.e 60 minutes or 1 hour), After this specified duration, any generated output file(s) will be automatically deleted from PDF.co temporary files storage. The maximum duration for link expiration varies based on your current subscription plan. Learn more To store permanent input files (e.g. re-usable images, pdf templates, documents), Consider using PDF.co built-in Files Storage. |
async optional Set async to true for long processes to run in the background, API will then return a jobId which you can use with /job/check endpoint to check the status of the process and retrieve the output while you can proceed with other tasks without waiting for this process to finish. |
profiles optional Use this parameter to set additional configurations for fine-tuning and extra options, The input must be in string format. Explore PDF.co knowledgebase for profile examples. |
- Method: POST
- URL: /v1/pdf/convert/from/doc
Query parameters
No query parameters accepted.
Body payload
{
"url": "https://pdfco-test-files.s3.us-west-2.amazonaws.com/doc-to-pdf/sample.docx",
"pages": "0-",
"name": "result.pdf",
"async": false
}
Example responses
POST /pdf/convert/from/doc
{
"url": "https://pdf-temp-files.s3-us-west-2.amazonaws.com/efc283805b4a47da87910826d4ddf063/result.pdf?X-Amz-Expires=3600&x-amz-security-token=FwoGZXIvYXdzEKz%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaDFzXkfTapcUbLLKahiKBAbIL4F2wV3gvozuGDxmOpWUu9ETuVzkYKjMuNLAFzVZeSgRm9Yuaj7ubad9uOLQkL65GNgBQoy1Xm%2FxtLWD9tegUYd3hFvYfIWMfkWjuROwMGTZeD3CMacDPdFkP%2BUSG4aXOZb8MoG2PXnsd9UUeOvrevZkCVTg77OBXIteBCPOojSjeis%2F5BTIoVCi%2FrwV5kEGkbfBwtgsfQL3MxSbg7j%2Fud%2F3oGbUWW7zsemcfiHTiFg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIA4NRRSZPHAK44PZ6O/20200812/us-west-2/s3/aws4_request&X-Amz-Date=20200812T103301Z&X-Amz-SignedHeaders=host;x-amz-security-token&X-Amz-Signature=6a176281828de74c917a4ff5bacd46eeca50221178bf34d01cac331f172e51c3",
"pageCount": 1,
"error": false,
"status": 200,
"name": "result.pdf",
"remainingCredits": 61165
}
Code Snippet
CURL
curl --location --request POST 'https://api.pdf.co/v1/pdf/convert/from/doc' \
--header 'x-api-key: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "https://pdfco-test-files.s3.us-west-2.amazonaws.com/doc-to-pdf/sample.docx",
"pages": "0-",
"name": "result.pdf",
"async": false
}'
Samples
- AWS Lambda - Convert DOC To PDF From URL (Node.js)
- C# - Convert DOC To PDF From URL
- C# - Convert DOC To PDF From URL Asynchronously
- C# - Convert DOC To PDF From Uploaded File
- C# - Convert Encrypted DOC To PDF From URL
- Delphi - Convert DOC To PDF From Uploaded File
- Java - Convert DOC To PDF From URL
- Java - Convert DOC To PDF From Uploaded File
- Java - Convert Encrypted DOC To PDF From URL
- JavaScript - Convert DOC To PDF From Base64 (Node.js)
- JavaScript - Convert DOC To PDF From URL (Node.js)
- JavaScript - Convert DOC To PDF From URL (Node.js) - Async API
- JavaScript - Convert DOC To PDF From Uploaded File (Node.js)
- JavaScript - Convert DOC To PDF From Uploaded File (Node.js) - Async API
- JavaScript - Convert DOC To Protected PDF From URL (Node.js)
- JavaScript - Convert DOC To Protected PDF From URL (Node.js) - Async API
- JavaScript - Convert Encrypted DOC To PDF From URL (Node.js) - Async API
- PHP - Convert DOC To PDF Asynchronously
- PHP - Convert DOC To PDF From Uploaded File
- PHP - Convert DOC to Protected PDF from Uploaded File
- PHP - Convert Encrypted DOC To PDF Asynchronously
- PowerShell - Convert DOC To PDF From URL
- PowerShell - Convert DOC To PDF From URL Asynchronously
- PowerShell - Convert DOC To PDF From Uploaded File
- PowerShell - Convert Encrypted DOC To PDF From URL Asynchronously
- Python - Convert DOC To PDF From URL
- Python - Convert DOC To PDF From URL Asynchronously
- Python - Convert DOC To PDF From Uploaded File
- Python - Convert Encrypted DOC To PDF From URL Asynchronously
- Salesforce - Convert Document To PDF
- VB.NET - Convert DOC To PDF From URL
- VB.NET - Convert DOC To PDF From URL Asynchronously
- VB.NET - Convert DOC To PDF From Uploaded File
- VB.NET - Convert Encrypted DOC To PDF From URL Asynchronously
- cURL - Convert Encrypted DOC To PDF From URL
- cURL - Document to PDF
Copyright © 2016 - 2024 PDF.co