$ man pdf-split
/pdf-split(1)
PRICE / CALL
$0.04
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
mediakitCATEGORY
media
STATUS
● live
NAME
pdf-split — pdf splitter / pdf page extractor
SYNOPSIS
POST https://x402.org/v1/pdf-split
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
PDF splitter / PDF page extractor. Two modes: page ranges (['1-3','5','7-end']) or one PDF per source page. CloudConvert engine.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| pdf_url | string | Public URL of the source PDF to split into separate files by page range or one-per-page. | required |
| ranges | array | Array of page-range strings. Examples: '1', '1-3', '5-end'. Up to 50 ranges. | optional |
| split_each_page | boolean | If true (and ranges omitted), produces one PDF per source page. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| pdfs | array | Array of { url, filename, file_size_bytes, range }. |
| output_count | number | Number of output PDF files produced by the split operation. |
| mode | string | 'ranges' or 'split_each_page'. |
| ranges | array | Array of page-range strings actually applied (e.g. ['1-3','5','7-end']) or per-page entries. |
| source_url | string | URL of the original input PDF that was split. |
| job_id | string | CloudConvert job ID for the split task, usable for status lookup or debugging. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.org/v1/pdf-split \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# install once claude mcp add x402 --command "npx x402-deployer-mcp" # then ask Claude Code: # "use the pdf-split tool to ..."
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- pdfsplitpagesextract
- env
- CLOUD_CONVERT_API_KEY
- methods
- POST
- cluster
- mediakit
- price
- $0.04 USDC per call
ADJACENT — other endpoints in mediakit
| endpoint | description | price |
|---|---|---|
| split-pdf | PDF splitter / PDF page extractor / split PDF by range / PDF to multiple files. | $0.04 |
| logo-detect | Brand logo detection / brand recognition in images. | $0.03 |
| office-to-pdf | Office to PDF converter — DOCX/DOC, XLSX/XLS, PPTX/PPT, ODT/ODS/ODP, RTF, TXT, CSV, EPUB, MD, HTML, Apple Pages/Numbers/Keynote → PDF. | $0.05 |
| video-thumbnail | Video thumbnail / video frame extractor. | $0.03 |
| xml-to-word | XML → Microsoft Word (DOCX) converter via CloudConvert. | $0.05 |
| audio-loudnorm | Audio loudness normalizer (EBU R128 LUFS). | $0.02 |
| csv-to-jsonl | CSV to JSON / CSV to JSONL converter / data pipeline preprocessor. | $0.02 |
| image-translate | Image translator: vision-OCR + Venice translate. | $0.02 |
SEE ALSO