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

# Convert Word to PDF API

Convert .doc, .docx, .odt, or .rtf files to PDF from uploads, URLs, or base64. Returns a PDF download or a signed PDF link.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `convert/word-file/pdf-file` | What it does Converts an uploaded Word document into a PDF and returns the PDF as a binary download… | 60 |
| POST | `convert/word-file/pdf-url` | What it does Converts an uploaded Word document into a PDF and returns a signed link to the generat… | 60 |
| POST | `convert/word-url/pdf-file` | What it does Converts a remote Word document at the given URL into a PDF and returns the generated… | 60 |
| POST | `convert/word-url/pdf-url` | What it does Converts a remote Word document accessible by URL into a PDF and returns a signed link… | 60 |
| POST | `convert/word-base64/pdf-file` | What it does Converts a base64-encoded Word document into a PDF and returns the PDF as a binary dow… | 60 |
| POST | `convert/word-base64/pdf-url` | What it does Converts a base64-encoded Word document into a PDF and returns a signed PDF link. The… | 60 |

## About

## What it does
Word to PDF Converter turns a Word document into a PDF from a file upload, a remote URL, or base64-encoded content. You can download the PDF directly or request a signed link, depending on how you want to handle the output in your app.

Send a `.doc`, `.docx`, `.odt`, or `.rtf` file in `body.file`, a document URL in `body.url`, or base64 file bytes in `body.base64`. The conversion endpoints return either a binary PDF download or an object with `data`, a signed URI to the generated PDF. The download variants also accept `landscape` as a query boolean to control page orientation.

Use Word to PDF Converter when you need to generate printable documents from uploads, third-party document links, or stored file bytes. Common cases include turning user-submitted contracts into PDFs, exporting reports from a document store, or returning a finished PDF to another service without exposing the original file.

## Usage

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