Docs

POST /v1/pdf/unlock

Use POST /v1/pdf/unlock when you have the user password and need an unencrypted copy. Failed password checks are not billed.

Provide source (url or file) plus the current user password. Tools rate. Output is unencrypted.

Fields

password is required. Encrypted inputs that do not match return 400.

Example

Unlock a password-protected PDF.

POST /v1/pdf/unlock
{
  "url": "https://example.com/locked.pdf",
  "password": "secret",
  "filename": "open.pdf"
}