---
title: Convert PDF to Excel Job API
slug: convert-pdf-to-excel
url: https://apyhub.com/flowdocs/service/convert-pdf-to-excel
provider: FlowDocs
categories: [File Conversion]
tags: [pdf-to-excel, document-conversion, spreadsheet-export, pdf-processing, batch-jobs]
auth: api_key
---

# Convert PDF to Excel Job API

Convert PDF files to .xlsx workbooks and track each job by status and progress. Useful for turning invoices, reports, and statements into spreadsheets.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `` | What it does Converts one or more PDF files into Excel .xlsx jobs. The request uploads PDF files, a… | 100 |
| GET | `/status/:job_id` | What it does Checks the status of a PDF-to-Excel conversion job and returns the job’s current state… | 1 |
| GET | `/download/:job_id` | What it does Downloads the finished PDF-to-Excel output for a completed job. The request takes a jo… | 10 |
| GET | `/overall-status` | What it does Returns aggregate progress information for one or more PDF-to-Excel jobs identified by… | 1 |

## About

## What it does
PDF to Excel Converter turns one or more PDF files into .xlsx workbooks. Send PDF files in the `files` array and get back a `jobs` list with a `job_id`, original `filename`, `status`, and `progress` for each conversion.

Use it when you need tabular data out of PDFs without rebuilding the spreadsheet by hand. A typical flow is to submit invoices, reports, or exported statements, then poll `/status/:job_id` until the job is `done` or `failed`. When the job finishes, fetch the converted workbook from `/download/:job_id` as binary output.

If you are processing multiple files, `/overall-status` lets you check aggregate progress for a set of job IDs. The response includes overall `status`, `progress`, and summary counts such as `total_files` and `completed_files`, plus per-job `details` when you need to track each conversion separately.

PDF to Excel Converter is a good fit for document workflows where the source format is fixed but the downstream system expects spreadsheets.

> **Note:** Pricing depends on page count and 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-excel
