Overview
HMAC-authenticated endpoint to remove a PDF password and return the unlocked file.
- Auth HMAC-SHA256 (key + secret)
- Content multipart/form-data
- Rate-limit Per API key
Rate limits
- Quota: 5 calls / day per API key
- Window: UTC day (resets at 00:00 UTC)
- Exceeding: HTTP 429 with JSON error
| Header | Meaning |
|---|---|
X-RateLimit-Limit | Daily quota (always 5 by default) |
X-RateLimit-Remaining | Calls left today after this request |
X-RateLimit-Reset | Unix epoch seconds of next UTC reset |
Note: This API is for developers and public use with limits. Postman does not work for file uploads with this HMAC scheme, because it re-encodes
multipart/form-data and the raw bytes you sign won’t match the bytes sent. Use the code samples below (Python / Node.js / Go) in your application.