Removes password protection from an encrypted PDF via the PDFAPIHub hosted API. Your PDF file and the decryption password are uploaded to PDFAPIHub servers, where the service decrypts the document and returns the unlocked PDF.
password — the password to unlock the PDFurl, base64_pdf, or multipart file uploadThis skill calls the PDFAPIHub hosted API at https://pdfapihub.com/api. Your PDF and password are sent to PDFAPIHub servers for decryption.
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.
Security & Privacy:
curl -X POST https://pdfapihub.com/api/v1/unlockPdf \
-H "CLIENT-API-KEY: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://pdfapihub.com/sampleprotected.pdf",
"password": "secret123",
"output": "url"
}'
共 1 个版本