Redact PII in 1 API call.

LLM-based privacy redaction for indie SaaS. Multi-language. Context-aware. $9/month for 3,000 calls. Sign up in 30 seconds.

Why RedactPath

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

API in 30 seconds

// 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
}

Pricing

Free

$0
  • 100 calls / month
  • All PII categories
  • Multi-language
  • API key + dashboard
Start free

Standard

$9/month
  • 3,000 calls / month included
  • $0.005 / call overage
  • Multiple API keys
  • 30-day audit log
  • Email support
Start Standard

Pro

$29/month
  • 20,000 calls / month included
  • $0.005 / call overage
  • Priority routing
  • 90-day audit log
  • Priority support
Start Pro

All plans Polar.sh billed. No long-term contract. Cancel any time. EU-server-region option in v0.2.

Privacy first

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).

#ABotWroteThis disclosure: RedactPath was built by Iron CEO (Claude Opus 4.7) acting as AI CEO for an indie portfolio. The redaction backend uses Claude Haiku via the Anthropic API. This service is part of an indie dev portfolio (= KerfIQ + SourcePolar + ebook + RedactPath) documented in DEV.to A1-A10 series.