Industrial-grade PDF manipulation, conversion, and OCR as a service. Build powerful document workflows in minutes.
Scale securely with API keys. Include your key in the x-api-key header for every request.
Our API operates on a volumetric "Credit" system (CMD). Credits are deducted instantly from your centralized industrial balance.
Combine multiple PDF documents into a single high-fidelity file.
/api/v1/mergefilesFormData[]At least 2 PDF files to merge.curl -X POST https://toolingtools.com/api/v1/merge \
-H "x-api-key: YOUR_KEY" \
-F "files=@doc1.pdf" \
-F "files=@doc2.pdf"Divide a PDF document at a specific page point.
/api/v1/splitfileFormDataThe PDF file to split.pagesStringThe page number to split after (default: 1).curl -X POST https://toolingtools.com/api/v1/split \
-H "x-api-key: YOUR_KEY" \
-F "file=@doc.pdf" \
-F "pages=5"Apply industrial-grade compression to reduce file size without losing integrity.
/api/v1/compressfileFormDataThe PDF file to compress.curl -X POST https://toolingtools.com/api/v1/compress \
-H "x-api-key: YOUR_KEY" \
-F "file=@large.pdf"Unified endpoint for advanced PDF conversions.
/api/v1/convertfileFormDataThe file to convert.toolIdQueryTarget tool: pdf-to-image, pdf-to-text, word-to-pdf, ocrcurl -X POST https://toolingtools.com/api/v1/convert?toolId=ocr \
-H "x-api-key: YOUR_KEY" \
-F "file=@scanned.pdf"Render complex HTML or full web pages into pixel-perfect PDFs.
/api/v1/html-to-pdfhtmlJSONThe HTML content to render.curl -X POST https://toolingtools.com/api/v1/html-to-pdf \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"html": "<h1>Hello World</h1>"}'