Best Free Unlock PDF

Take the password off a PDF you can open, or add one to protect it — free, no watermark, no signup.

Up to 25 MB. Your file is processed in memory and never stored.

The result downloads automatically when ready.

100% free No signup No watermark Files processed in memory, never stored
Go Pro for the best AI models — image, video and chat — plus bigger uploads, priority in the queue and no waiting. Upgrade to Pro
Love best.free? Share it

How it works

  1. Upload. Choose the PDF and pick Remove password or Add password.
  2. Enter password. Type the current password to unlock, or a new password to protect the file.
  3. Download. Your unlocked or newly protected PDF downloads automatically.

About this tool

Unlock PDF removes the password from a PDF you can already open, so you stop being prompted every time. Enter the current password and you get an unprotected copy back. The same tool works the other way: choose Add and it encrypts the PDF with a new password instead. It only unlocks documents you can supply the password for — it is not a way to break into a PDF you cannot open. No watermark, no signup, processed in memory and discarded.

What people use it for

  • Stop being asked for a password on a PDF you own
  • Remove a known password before merging or editing
  • Add a password to protect a sensitive document
  • Re-protect a PDF with a new password

Developer API

Automate this tool from your own code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup — API keys for higher limits are coming.

POST https://best.free/api/tools/pdf-unlock/
Parameter Example Required Notes
file (file) protected.pdf Yes PDF, ≤25 MB.
action remove No "remove" to strip a password, "add" to set one.
password currentpass No Current password (required to remove/re-protect).
new_password newpass No New password when action is "add".
curl -X POST https://best.free/api/tools/pdf-unlock/ \
  -F 'file=@protected.pdf' \
  -F 'action=remove' \
  -F 'password=currentpass' \
  -F 'new_password=newpass' \
  -o unlocked.pdf
import requests

files = {"file": open("protected.pdf", "rb")}
data = {"action": "remove", "password": "currentpass", "new_password": "newpass"}

r = requests.post("https://best.free/api/tools/pdf-unlock/", files=files, data=data)
with open("unlocked.pdf", "wb") as out:
    out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("action", "remove");
fd.append("password", "currentpass");
fd.append("new_password", "newpass");

const r = await fetch("https://best.free/api/tools/pdf-unlock/", { method: "POST", body: fd });
const blob = await r.blob();  // the unlocked.pdf

Response: The PDF with its password removed (or added).

Frequently asked questions

No. It only removes a password you can supply. It is a convenience tool for documents you are entitled to open, not a way to bypass protection on a file you cannot access.

Remove takes the current password off and returns an unprotected copy; Add encrypts the PDF with a new password you choose. The mode is a simple toggle on the form.

The protected copy is encrypted with strong AES-256 (PDF revision 6), the modern standard supported by current PDF readers.

No. Only the encryption is removed; the pages, text and layout are identical to the original document.

Up to 100 MB per PDF on the free tier, which covers the vast majority of password-protected documents.

No. The password is used only to open the file for that request, and the PDF is processed in memory and discarded immediately — nothing is logged or kept.

Yes. POST your file as multipart/form-data to /api/tools/pdf-unlock/ and the processed file streams straight back — the same engine the web tool uses, so results are identical. It is rate-limited per IP like the web version and needs no signup; API keys for higher limits are coming. See the API section above for ready-to-run curl, Python and JavaScript examples.

Yes — Unlock PDF is completely free, with no watermark on the output and no credit card required.

Yes. It runs in your browser, so Unlock PDF works on phones and tablets as well as desktop — there is no app to install.

No. Unlock PDF works with no signup at all; an optional free account only exists to unlock higher usage limits.

Related tools

Rate this page
5.0/5 (0)

What could we improve? Your feedback helps us fix issues.