Split a PDF into pages

Drop a PDF, get one PDF per page, in order. The file is processed in memory, then forgotten — nothing is kept on our servers.

One PDF in, one document per page out — in order. Up to 200 pages and 10 MB.

How it works

  1. 1.Choose a PDF

    One file, up to 200 pages and 10 MB. It is recognised as a PDF from its bytes, not its name.

  2. 2.Start

    Every page becomes a document of its own, numbered in the order of the original file.

  3. 3.Download

    Page by page, or all at once. Each one carries its SHA-256 fingerprint.

What to know before you start

  • Up to 200 pages and 10 MB per PDF.
  • Each page becomes a PDF: report.pdf gives report-1.pdf, report-2.pdf, and so on.
  • No ZIP archive: pages download one by one, and your browser may ask permission to save several files.
  • Every page is extracted: to keep only a few, split, then merge the ones you want.
  • Pages are copied, not redrawn: selectable text stays selectable.
  • A protected PDF is refused, with its reason — and that refusal is not counted.

The same operation, through the API

The browser and your backend call the same endpoint, and get the same response.

curl -X POST https://api.convertchester.com/v1/split \
  -F "file=@document.pdf"
Read the API documentation

Other PDF tools

Is splitting a PDF free?

Yes, in the browser and without an account. A refusal is never counted.

Is my file kept?

No. The file is processed in memory then forgotten. Logs carry only its SHA-256 fingerprint and its size — never its name or its content.

Can I extract only some pages?

Not in one operation: splitting extracts every page. Split the PDF, then merge the pages you want to keep, in the order you want.