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

# Convert PDF to Word API

Convert PDFs to editable DOCX from a URL, file upload, or base64 input. Returns a DOCX download or a download_url for backend workflows.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `convert/pdf/docx/sync/url/download` | What it does test Converts a PDF available at a public URL into a DOCX file and returns the generat… | 200 |
| POST | `convert/pdf/docx/sync/url/url` | What it does Converts a PDF available at a public URL into a DOCX file and returns a download URL f… | 150 |
| POST | `convert/pdf/docx/sync/base64/download` | What it does Converts a PDF provided as Base64-encoded content into a DOCX file and returns the con… | 150 |
| POST | `convert/pdf/docx/sync/base64/url` | What it does Converts a PDF provided as base64-encoded content into a DOCX file and returns a downl… | 150 |
| POST | `convert/pdf/docx/sync/file/download` | What it does Converts an uploaded PDF file into a DOCX file and returns the converted file as a bin… | 150 |
| POST | `convert/pdf/docx/sync/file/url` | What it does Converts an uploaded PDF file into a DOCX file and returns a downloadable URL for the… | 150 |

## About

## What it does test
PDF to DOCX Converter turns a PDF into an editable Word document. Send a PDF by URL, upload the file directly, or pass base64-encoded content, and get back either a DOCX download or a `download_url`.

Use the URL endpoints when the source PDF is already hosted publicly. Use the file upload endpoints when you have the document in hand, or the base64 endpoints when your application stores file content as encoded text. The service accepts a public `file_url`, a binary `file`, or `pdf_base64`, depending on the route.

The output is intentionally simple: either binary DOCX content for immediate download, or a JSON object containing `download_url`. That makes it easy to plug into document workflows, customer support portals, file-processing queues, or admin tools that need a Word version of a PDF without building conversion logic yourself.

PDF to DOCX Converter is a good fit when you need to hand users an editable copy of a report, contract, form, or scanned document while keeping the conversion step in your own backend.

## Usage

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