# Arch Tools PII Detect

> Arch Tools PII Detect is a paid API for AI agents from archtools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Scans text for personally identifiable information (PII) and optionally returns a redacted version

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/pii-detect
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-pii-detect-89fb6922
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dklEdMSnzgwCM85a8xpzV

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability arch-tools-pii-detect-89fb6922 -d '<json body>'
```

Example prompt: Scan this text for any PII and give me back a redacted version: 'Hi, my name is John Smith, my email is john@example.com and my SSN is 123-45-6789.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call PII scan without standing up your own NLP pipeline or managing a subscription. It is ideal for agents processing user-generated content, logs, or documents that must be checked for privacy compliance before storage or sharing. Prefer it over general entity extraction endpoints when your primary goal is privacy-focused PII identification and optional redaction rather than broad NER.

## Known failure modes

- Empty or missing 'text' field returns a validation error
- Very long text inputs may hit size limits or time out
- False negatives: uncommon or obfuscated PII formats may not be detected
- False positives: non-PII strings resembling PII patterns may be flagged
- Non-English text may have reduced detection accuracy
- Payment failure via x402 protocol returns 402 before processing

## How this service works

Arch Tools — pii-detect

## Output

A JSON object indicating which PII entities were found in the text (e.g. names, emails, phone numbers, SSNs, credit card numbers), their types and positions, and optionally a redacted version of the original text with sensitive values masked or replaced.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to scan for PII"
  },
  "redact": {
   "type": "boolean",
   "default": false,
   "description": "Whether to return redacted version of the text"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-pii-detect-89fb6922/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
