PDF Split — Extract Pages & Ranges avatar

PDF Split — Extract Pages & Ranges

Pricing

from $0.0025 / pdf part created

Go to Apify Store
PDF Split — Extract Pages & Ranges

PDF Split — Extract Pages & Ranges

Split one PDF into multiple files by page ranges, every N pages, or one file per page. Break big scans, statements and reports into per-record documents in one run.

Pricing

from $0.0025 / pdf part created

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Split one PDF into multiple files — by page ranges, every N pages, or one file per page. Break big scans, statements and reports into per-record documents in a single run.

What it does

  • By ranges1-3,5,8-10 produces one file per range.
  • Every N pages — chunk a long PDF into equal parts.
  • One file per page — explode a PDF into single pages.

Use cases

  • Office — split a merged scan back into individual documents.
  • Statements/invoices — break a combined PDF into per-customer files.
  • Prep — extract just the pages you need.

Input

{ "pdfUrl": "https://example.com/doc.pdf", "mode": "ranges", "ranges": "1-3,5,8-10" }
FieldTypeDescription
pdfUrlstringPDF to split.
modestringranges, everyN or each.
rangesstring1-based ranges like 1-3,5,8-10 (ranges mode).
everyNintegerPages per output file (everyN mode).

Output

Each output file is one dataset row, saved to your key-value store.

{ "part": 1, "pages": 3, "pageNumbers": [1,2,3], "url": "https://api.apify.com/v2/key-value-stores/.../records/part-0001.pdf" }

Output schema

FieldTypeDescription
partintegerOutput file number.
pagesintegerPages in this file.
urlstring (URL)Link to the split PDF.

FAQ

Can I automate it? Yes — via integrations on the Apify platform and the Apify API.

Notes

Original clean-room implementation. Pairs with PDF Merge.