---
title: Convert Word to PDF API
slug: convert-word-to-pdf
url: https://apyhub.com/apyhub/service/convert-word-to-pdf
provider: ApyHub
categories: [File Conversion]
tags: [convert, pdf, word]
auth: api_key
---

# Convert Word to PDF API

Convert Word files, base64 documents, or remote URLs to PDF. Get a binary download or a signed link for `.doc`, `.docx`, `.odt`, and `.rtf` inputs.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/convert/word-base64/pdf-url` | What it does Converts a base64-encoded Word document into a PDF and returns a signed link to the ge… | 100 |
| POST | `/convert/word-file/pdf-file` | What it does Converts an uploaded Word document to a PDF and returns the generated PDF as a binary… | 100 |
| POST | `/convert/word-file/pdf-url` | What it does Converts an uploaded Word document to a PDF and returns a signed link to the generated… | 100 |
| POST | `/convert/word-url/pdf-file` | What it does Converts a remote Word document at the provided URL into a PDF and returns the PDF as… | 100 |
| POST | `/convert/word-url/pdf-url` | What it does Converts a remote Word document available at a URL into a PDF and returns a signed PDF… | 100 |
| POST | `/convert/word-base64/pdf-file` | What it does Converts a base64-encoded Word document to a PDF and returns the PDF as a binary downl… | 100 |

## About

## What it does
Word to PDF Converter turns a Word document into a PDF from a file upload, a base64-encoded document, or a remote document URL. You can get the result as a downloadable PDF or as a signed link.

Use it when you need to standardize document output for sharing, archiving, or downstream automation. The service accepts `.doc`, `.docx`, `.odt`, and `.rtf` uploads on the file-based endpoints, plus base64 input on the encoded endpoints and a `url` for remote documents. Some download endpoints also accept a `landscape` boolean query parameter to render the PDF in landscape orientation.

The response depends on the endpoint you call. Download endpoints return the PDF as binary output. Link endpoints return an object with a `data` field containing a URI to the generated PDF.

This fits workflows such as converting customer-submitted Word files into consistent PDFs before storage, or generating a temporary download link for a document fetched from external storage.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/apyhub/service/convert-word-to-pdf
