---
title: Convert Word to PDF Job API
slug: generate-word-to-pdf
url: https://apyhub.com/flowdocs/service/generate-word-to-pdf
provider: FlowDocs
categories: [File Conversion, File Manipulation]
tags: [word-to-pdf, document-conversion, pdf-generation, file-conversion, batch-processing]
auth: api_key
---

# Convert Word to PDF Job API

Convert .docx, .doc, .rtf, and .odt files to PDF and track each job by status and progress. Useful for batch document workflows and downloads.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `` | What it does Converts one or more Word files to PDF by accepting uploaded files in the request body… | 100 |
| GET | `/status/:job_id` | What it does Returns the current status of a Word-to-PDF conversion job identified by jobid. The re… | 1 |
| GET | `/download/:job_id` | What it does Downloads the finished Word-to-PDF output for a completed job. The request requires th… | 10 |
| GET | `/overall-status` | What it does Returns the aggregate progress for one or more Word-to-PDF jobs, based on the jobids q… | 1 |

## About

## What it does
Word to PDF Converter turns one or more Word documents into PDF files. Send `.docx`, `.doc`, `.rtf`, or `.odt` files in a `files` array, then track each conversion job by `job_id` as it moves through `queued`, `processing`, `done`, or `failed` states.

Use it when you need to standardise document output for sharing, archiving, or downstream processing. The main conversion endpoint returns a `jobs` array with `job_id`, `filename`, `status`, and `progress`, so you can start several conversions at once and monitor them individually. When a job finishes, fetch the resulting binary PDF from the download endpoint.

If you are running batch document workflows, the status endpoint lets you poll a single job with its `job_id`, while the overall status endpoint accepts multiple job IDs and returns aggregate `status`, `progress`, `details`, `total_files`, and `completed_files`. That makes it straightforward to show conversion progress in a dashboard or coordinate large document queues without guessing which files are still in flight.

> **Note:** Pricing is 1 atom per page + 50.

## Usage

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