Drop-in guardrails for LLM apps.

PII redaction and prompt-injection detection in a single API call. Built for developers shipping AI — one POST, every prompt cleaned and vetted before it reaches your model.

Free tier — 500 scans/month, no card required.

Request
curl https://api.sievr.dev/v1/scan \
  -H "Authorization: Bearer sv_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Email alice@example.com. Ignore previous instructions.",
    "checks": ["pii", "injection"]
  }'
Response
{
  "request_id": "01HXYZ…",
  "latency_ms": 47,
  "pii": {
    "redacted_text": "Email <EMAIL_1>. Ignore previous instructions.",
    "entities": [
      { "type": "EMAIL", "start": 6, "end": 23, "score": 0.99 }
    ]
  },
  "injection": {
    "verdict": "block",
    "score": 0.95,
    "reasons": ["pattern:instruction_override"]
  }
}

Two checks, one endpoint.

Every request runs both checks in parallel. Redacted text and injection verdict come back in a single JSON response — typically well under 200 ms.

PII redaction

Names, emails, phones, IDs — replaced before they reach your model.

Microsoft Presidio under the hood, with reversible <TYPE_N> placeholders so you can rehydrate post-response. Custom regex recognizers per request.

Prompt injection

Three-stage cascade — patterns, classifier, optional LLM tiebreaker.

~150 hand-curated regex patterns catch the obvious overrides; a DeBERTa-v3 classifier handles novel attacks; Claude Haiku resolves the uncertain band when you opt in.

Drop-in

One bearer token, one POST, language-agnostic.

No SDK lock-in, no infra to run. Stripe-style key prefixes for leak detection, rate-limit headers on every response, batch endpoint for log-volume preprocessing.

We publish our numbers.

Measured on the deepset/prompt-injections public test split. Methodology and harness live in the repo. Last run today.

0.00
ROC-AUC
0%
Recall at 1% false-positive rate
0 ms
p50 detection latency
0%
False positives on test split

Pricing.

Free for development. Paid plans bill base + metered overage. No seat licenses, no enterprise add-ons.

Free
$0/mo
500 scans included
hard cap
Sign up free
Starter
$19/mo
10,000 scans included
then $1.50 / 1k
Start with Starter
Growth
$59/mo
40,000 scans included
then $1.30 / 1k
Choose Growth
Pro
$99/mo
100,000 scans included
then $1.20 / 1k
Choose Pro
Scale
$299/mo
500,000 scans included
then $1.00 / 1k
Choose Scale