PDF Redaction API Server
1.1K
Automate PII (Personally Identifiable Information) removal from PDF documents with a high-performance, self-hosted REST API. No data ever leaves your server.
The PDF Redaction API is a containerized solution designed for developers who need to protect sensitive data while maintaining total control over document privacy. It is ideal for GDPR, HIPAA, and CCPA compliance.
Option A (curl):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/StabRise/pdf-redaction-api/main/install.sh)"
Option B (wget):
/bin/bash -c "$(wget -qO- https://raw.githubusercontent.com/StabRise/pdf-redaction-api/main/install.sh)"
To run the PDF Redaction API on your VPS using Docker, use the following command:
docker run -d -p 8002:8002 \
-e PDF_REDACTION_API_LICENSE=your_key_here \
stabrise/pdf-redaction-api:latest
For a professional setup with a persistent volume (best for your VPS setup):
services:
pdf-api:
image: stabrise/pdf-redaction-api:latest
restart: unless-stopped
ports:
- "8002:8002"
environment:
- PDF_REDACTION_API_LICENSE=${PDF_REDACTION_API_LICENSE}
Once the container is running, you can redact a document by sending a POST request to /redact:
curl -X POST http://localhost:8002/api/anonymize/pdf/ \
-H "Content-Type: multipart/form-data" \
-F "[email protected]"
For full documentation, visit: PDF Redaction API Docs
This image is designed for high-security environments:
A valid license key is required to start the service. You can obtain a free trial or a commercial license at pdf-redaction.com.
Content type
Image
Digest
sha256:241b000ba…
Size
1.1 GB
Last updated
6 months ago
docker pull stabrise/pdf-redaction-api