Self-Hosted API (Monthly Unlimited License)
Run SecuRedact on your own infrastructure and protect OpenClaw (or any workflow) with privacy filtering via /redact.
Quick start (3 commands)
git clone https://github.com/GigantesHJI/SecuRedactedApp.py.git cd SecuRedactedApp.py cp .env.example .env docker compose up -d --build
Required configuration
Add these values to .env:
SECUREDACT_API_BASE_URLSECUREDACT_API_TOKENSECUREDACT_MACHINE_ID
Customer deployments always use the licensed canonical API path.
Verify your setup
curl -sS http://localhost:8080/healthz
curl -sS -X POST http://localhost:8080/redact \
-H 'Content-Type: application/json' \
-d '{"text":"John Doe lives in Amsterdam","entities":["PER","LOC"]}'
If your license or upstream API is unavailable, /redact may return a 502 response with an error message.
Full setup guide
Prefer a full walkthrough? See the complete guide in the repository: docs/self-host-api-license.md