LLM-based privacy redaction for indie SaaS. Multi-language. Context-aware. $9/month for 3,000 calls. Sign up in 30 seconds.
| AWS Comprehend | Google DLP | Microsoft Presidio | RedactPath | |
|---|---|---|---|---|
| Setup time | 1h+ (IAM) | 1h+ (GCP) | self-host | 30 sec |
| Multi-language | limited | auto-detect | model dep. | Claude native |
| Edge case (context) | rule-based | rule-based | spaCy NER | LLM context-aware |
| Free trial | 50k unit/month | 1k unit/month | self-host = free | 100 call/month |
| Indie dev TCO | high | high | medium (ML) | low |
// 1. Sign up + get API key (30 sec) // 2. Redact in 1 call curl https://api.redactpath.com/v1/redact \ -H "Authorization: Bearer rpath_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "John Doe sent an email to jane@example.com about the deal.", "language": "auto", "categories": ["NAME", "EMAIL", "PHONE", "ADDRESS"] }' // Response { "redacted_text": "[NAME] sent an email to [EMAIL] about the deal.", "redactions": [ {"original": "John Doe", "category": "NAME", "position": [0, 8]}, {"original": "jane@example.com", "category": "EMAIL", "position": [27, 43]} ], "char_count": 56, "calls_consumed": 1, "calls_remaining": 99 }
All plans Polar.sh billed. No long-term contract. Cancel any time. EU-server-region option in v0.2.
Text submitted to RedactPath is passed to Anthropic Claude Haiku for redaction. Anthropic's policy retains submissions for ≤30 days for safety + abuse review, then deletes. No content is used for model training. No content is stored on RedactPath servers beyond the request lifecycle (audit log only stores call metadata + character counts, not content).
EU server-region option (= Anthropic EU endpoint) is on the v0.2 roadmap. For strict on-prem requirements, the v0.3 roadmap includes self-host instructions (= Cloudflare Workers + own Anthropic key).