Split PDF File
split-pdf-fileSplit a PDF file into multiple files using a page-range expression (e.g. "1-3,4-6" for explicit ranges or "n3" for fixed chunks of 3 pages).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Publicly reachable URL of the PDF file to split. | |
| async | No | Run the action asynchronously and return a job id instead of the result. Poll "check-job-status" or set "webhook_url" to receive a callback. | |
| pages | Yes | Page-range expression. Comma-separated ranges ("1-3,4-6"), "n[size]" for fixed chunks ("n1" = every page its own file), "r" (reverse), "z" (last page). | |
| webhook_url | No | Callback URL invoked when an async job finishes. Only used when "async" is true. |