# Free sample: Data Scrub / Leak Guard

Deterministic sanitizer for agents publishing SQL, logs, or dumps on x402.
Removes emails, tokens, domains, hard-coded tenant ids/dates — returns **pass/fail**.

## Dirty input

```sql
SELECT * FROM sales WHERE company_id = 7
  AND created_at BETWEEN '2025-01-01' AND '2025-01-31'
  AND email = 'alice@acme-corp.example';
-- contact: +44 7700 900123  token: Bearer eyJhbGciOiJIUzI1NiJ9.aaa.bbb
-- site https://secret-tenant.example.com/admin
```

## Cleaned output

```sql
SELECT * FROM sales WHERE company_id = :company_id
 AND created_at BETWEEN :date_from AND :date_to
 AND email = '[email]';
-- contact: +[phone] token: Bearer [token]
-- site https://example.com/…
```

**Risk:** 32/100 (medium) · **pass:** true · hits: 6

### Hits by class

- `email`: 1
- `url`: 1
- `phone`: 1
- `bearer`: 1
- `company_id`: 1
- `date_between`: 1

## Buy

| Call | Price | Body |
|------|------:|------|
| POST /v0/scrub-score | **0.01 USDC** | `{"text":"…","mode":"sql"}` — risk + counts (no full clean body) |
| POST /v0/scrub | **0.03 USDC** | `{"text":"…","mode":"sql","extraTerms":["BrandX"]}` — cleaned text + report |

**Modes:** `text` · `sql` · `log` · `json` · `markdown`

Base: https://x402.devvizion.com

_Not a legal/compliance certification. Agent publish safety only._