# PDF Password Unlock (api.pixo.tools)

> PDF Password Unlock (api.pixo.tools) is a paid API for AI agents from api.pixo.tools, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Removes the password protection from an encrypted PDF file, given the correct password, returning the unlocked PDF.

## Facts

- Endpoint: POST https://api.pixo.tools/v1/pdf/unlock
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pdf-password-unlock-api-pixo-tools-599b1cbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ECV4WWaoS-49yYJLFbq1H

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability pdf-password-unlock-api-pixo-tools-599b1cbc -d '<json body>'
```

Example prompt: I have a password-protected PDF called 'report.pdf' and the password is 'Sunshine2024' — can you unlock it and give me the unencrypted version?

## When to prefer this

Use this endpoint when you have a password-protected PDF and the correct password, and need to produce an unlocked version programmatically at a flat $0.02 per call. Prefer this over manual tools when automating document pipelines or when downstream PDF operations (OCR, extraction, merging) require an unencrypted file.

## Known failure modes

- Wrong password provided — decryption fails with an authentication error
- File is not actually password-protected — may return an error or pass-through
- Corrupted or malformed PDF input — processing error returned
- File too large or unsupported encryption scheme — error response
- Network or payment failure — x402 payment not completed

## How this service works

Remove a PDF's password (requires the password) — flat price

## Output

A decrypted, unlocked PDF file with password protection removed, ready for further reading or processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file",
  "password"
 ],
 "properties": {
  "file": {
   "type": "string"
  },
  "password": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "string",
 "format": "binary"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pdf-password-unlock-api-pixo-tools-599b1cbc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pixo.tools](https://www.zero.xyz/host/api.pixo.tools/llms.txt)
