---
title: Convert PDF to Image API
slug: convert-pdf-pages-to-images
url: https://apyverse.com/apyhub/service/convert-pdf-pages-to-images
provider: ApyHub
categories: [File Conversion, File Manipulation, Image Processing]
auth: api_key
---

# Convert PDF to Image API

Convert PDF pages from upload, URL, or base64 into JPG or PNG images. Return a ZIP download or an S3 download_url.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `convert/pdf/image/sync/file/url` | What it does Converts the pages of an uploaded PDF file into images and returns a JSON object conta… | 150 |
| POST | `convert/pdf/image/sync/file/download` | What it does Converts an uploaded PDF file into images for each page and returns the result as a bi… | 150 |
| POST | `convert/pdf/image/sync/url/url` | What it does Converts the pages of a PDF file available at a URL into images and returns a URL to d… | 150 |
| POST | `convert/pdf/image/sync/url/download` | What it does Converts the pages of a PDF available at a public URL into image files and returns the… | 150 |
| POST | `convert/pdf/image/sync/base64/url` | What it does Converts a PDF provided as a Base64-encoded string into images and returns a JSON obje… | 150 |
| POST | `convert/pdf/image/sync/base64/download` | What it does Converts a PDF provided as base64-encoded content into image files and returns the res… | 150 |

## About

## What it does
PDF to Images converts each page of a PDF into image files. Send a PDF by upload, public URL, or base64-encoded content, and choose the output image format as JPG or PNG plus a rendering quality from low to ultra.

Use PDF to Images when you need page-by-page images for preview galleries, document workflows, thumbnail generation, or downstream image processing. The service supports both direct downloads and S3-hosted results, so you can either fetch a ZIP of images or work with a `download_url` returned in the response.

For file uploads, the input schema requires `file`, with optional `quality` and `img_format`. For URL-based conversion, provide `file_url` and the same output options. For base64 workflows, send `pdf_base64` with the same quality and format controls. In all cases, the service processes the PDF pages and returns either a binary ZIP download or a JSON object containing a `download_url`.

If your application stores PDFs in object storage, PDF to Images fits into automated review, archival, and content extraction pipelines where page images are easier to display or inspect than the original document.

## 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-pages-to-images
