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

# Convert PDF to Word API

Convert PDFs to editable DOCX from a file, URL, or base64 content. Returns a DOCX download or S3 download_url for document workflows.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/convert/pdf/docx/sync/base64/download` | What it does Converts a PDF provided as base64-encoded content into a downloadable DOCX file. The r… | 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 generated 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 download URL for the gene… | 150 |
| POST | `/convert/pdf/docx/sync/url/download` | What it does Converts a publicly accessible PDF at the supplied URL into a DOCX file and returns th… | 150 |
| POST | `/convert/pdf/docx/sync/url/url` | What it does Converts a PDF available at a public URL into a DOCX file. The request sends the PDF U… | 150 |

## About

## What it does
PDF to DOCX Converter turns a PDF into an editable Word document. Send a PDF as a file, a public PDF URL, or base64-encoded content, and get back either the converted DOCX as a binary download or a `download_url` for S3-hosted retrieval.

Use the file upload endpoints when you already have the PDF in your app, or the URL and base64 endpoints when the source document lives elsewhere in your workflow. The service accepts a valid PDF file, a publicly accessible `.pdf` URL, or `pdf_base64` content. For file uploads, the PDF must be non-password-protected and under 10 MB.

This is useful when you need to pass scanned or generated PDFs into document editors, review pipelines, or internal tools that expect Word format. Keep in mind that the output is a conversion result: if the source PDF has complex layout, the DOCX preserves the content in editable form rather than returning extracted text or metadata.

## Usage

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