Catch PII before your prompts leave the building.
One API call scans any LLM prompt for personal data and returns a GDPR-ready audit trail. EU AI Act enforcement starts August 2026.
The problem
Your LLM prompts are leaking customer data
Lakera is gone
Check Point acquired the market leader and folded it into an enterprise-only platform. No self-serve API exists for teams under $50K/year.
EU AI Act is 4 months away
Full enforcement starts August 2, 2026. You need a data governance layer for high-risk AI systems or face regulatory exposure.
Regex pipelines don't cut it
You're either self-hosting Presidio in Docker, writing fragile regex, or going unprotected and hoping compliance doesn't bite.
How it works
Three lines of code. Full PII coverage.
Send your prompt
POST to /v1/scan with the text you're about to send to OpenAI or Anthropic.
fetch("https://api.scanpii.ai/v1/scan", {
method: "POST",
headers: { "X-API-Key": key },
body: JSON.stringify({ text: prompt })
})Get PII entities back
Receive detected entity types, positions, confidence scores, and a pre-redacted version of your text.
{
"risk_score": 0.95,
"entities": [
{ "type": "EMAIL", "confidence": 0.99 },
{ "type": "US_SSN", "confidence": 0.97 }
],
"redacted": "Help [PERSON] at [EMAIL]"
}Ship with confidence
Use the redacted text for your LLM call. The audit log entry is already written for your GDPR Article 30 records.
// Use redacted text for LLM call
const safe = result.redacted;
const answer = await openai.chat({
messages: [{ role: "user", content: safe }]
});
// Audit trail: already loggedPricing
Start free. Scale when you need to.
No credit card required. All plans include the full detection engine.
Free
For side projects and prototyping
- 5,000 scans/month
- 1 API key
- 30+ PII entity types
- Sub-50ms latency
- Community support
Pro
RecommendedFor production LLM applications
- 50,000 scans/month
- 5 API keys
- 30+ PII entity types
- Sub-50ms latency
- Audit log export (CSV/JSON)
- Lakera-compat endpoint
- Email support
Scale
For teams shipping EU-compliant AI
- 250,000 scans/month
- 5 API keys
- 30+ PII entity types
- Sub-50ms latency
- Audit log export (CSV/JSON)
- Lakera-compat endpoint
- Webhook on PII detection
- Priority support
FAQ
Questions
Early access
Get on the waitlist
Be first in line when ScanPII launches. Free tier included for all early signups.