PII Detector
AI / AgentDetect and redact personally identifiable information: emails, phones, SSNs, credit cards, IPs, IBANs, and crypto wallets
Pasting a log dump or a bug report into an LLM prompt is exactly the moment you want to know if it contains an email, phone number, SSN, credit card, IP, IBAN, or crypto wallet address first, and this scans for all of them using pattern matching that runs entirely client-side, which matters since you're often pasting genuinely sensitive data into it. Redact mode produces a sanitized version ready to share in a support ticket or prompt. It's worth being honest about the limits: this catches well-structured patterns but misses unstructured PII like names or addresses embedded in free text, and it will occasionally flag a numeric false positive that matches a card or IBAN pattern without being real. A clean scan is not a compliance guarantee, and neither is a flagged match automatically real PII.
How to use PII Detector
- 1.Paste a document or log dump to scan for emails, phone numbers, SSNs, credit cards, IPs, IBANs, and crypto wallet addresses.
- 2.Use the redact mode to generate a sanitized version of text before sharing it in a bug report, support ticket, or LLM prompt.
- 3.Run it over sample data before ingesting it into an analytics pipeline to catch PII that shouldn't be logged or stored.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/detect-pii \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"text": "Alice Johnson, SSN 123-45-6789", "redact": true}'Get an API key from your dashboard · Full API docs →