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

# Convert PDF to Word Job API

Convert PDF files to Word .docx outputs and track each job by status and progress. Supports single-file downloads and aggregated job monitoring.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `` | What it does Converts one or more PDF files into Word documents. The request uploads PDF files, and… | 100 |
| GET | `/status/:job_id` | What it does Checks the status of a PDF-to-Word conversion job and returns the job identifier, curr… | 1 |
| GET | `/download/:job_id` | What it does Downloads the converted Word file for a completed PDF-to-Word job. The request identif… | 10 |
| GET | `/overall-status` | What it does Aggregates the progress of one or more PDF-to-Word jobs and returns a combined status… | 1 |

## About

## What it does
PDF to Word Converter turns PDF files into downloadable .docx outputs and tracks each conversion as a job. Send one or more PDF files in the `files` array, get back job records with `job_id`, `filename`, `status`, and `progress`, then poll for completion or download the finished document.

Use it when you need editable Word documents from uploaded PDFs: contract workflows, report reuse, manual editing, or content migration. The API is built around asynchronous jobs, so you can submit multiple files, keep track of progress per file, and handle longer conversions without blocking your app.

Check an individual job with `GET /status/:job_id`, which returns the `job_id`, `status`, `progress`, and an optional `error` string. For bulk workflows, `GET /overall-status` accepts `job_ids` and returns aggregate `status`, `progress`, `details`, `total_files`, and `completed_files` so you can show a unified progress view across many conversions.

When a job finishes, `GET /download/:job_id` returns the converted Word file as binary data. That makes PDF to Word Converter a straightforward fit for document pipelines that need a reliable handoff from PDFs to editable Word files. 

> **Note:** Pricing depends on page count and detected PDF type: native PDFs cost 2 atoms per page + 100, while scanned PDFs cost 5 atoms per page + 100.

## Usage

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