Install
openclaw skills install @rishabhdugar/merge-pdfsCombine two or more PDFs into a single document. Supports URLs, base64, multipart uploads, and custom metadata.
openclaw skills install @rishabhdugar/merge-pdfsCombines two or more PDFs into a single document. Google Drive share links are automatically converted to direct-download URLs.
Provide one of:
urls — array of PDF URLs (2-25)files — array of base64-encoded PDFsfiles field(s)Send your API key in the CLIENT-API-KEY header.
Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.
| Constraint | Value |
|---|---|
| Max input files | 25 |
| Max pages per document | 200 |
| Max total pages | 500 |
| Max input file size | 50 MB |
| Download timeout | 60 s |
curl -X POST https://pdfapihub.com/api/v1/pdf/merge \
-H "CLIENT-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"https://pdfapihub.com/sample.pdf",
"https://pdfapihub.com/sample1.pdf"
],
"output": "url"
}'