# ClearCheck PII Redaction

> ClearCheck PII Redaction is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Strips personally identifiable information (names, emails, phones, credit cards, addresses) from a text passage and reports exactly what was removed and how many instances.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/redact
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-pii-redaction-3631fe4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ihYw83L4F_xSkE7jUo-46

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 clearcheck-pii-redaction-3631fe4c
```

Example prompt: Can you redact all personal information from this text and tell me exactly what was removed: 'Please contact John Smith at john.smith@example.com or call 555-867-5309. His billing address is 123 Main St, Springfield, IL 62701.'

## When to prefer this

Choose this endpoint when you need both redaction AND an audit trail of what was removed (types and counts), not just a cleaned output. Ideal for compliance workflows, legal document processing, or any pipeline where you need to verify PII was present before sharing data downstream. The per-call pricing at $0.02 USDC suits low-to-medium volume use cases via x402 micropayments without subscription overhead.

## Known failure modes

- Text exceeds 6000 character limit — request will fail or be truncated
- No PII detected — returns original text unchanged with zero removed count
- Ambiguous names or context-dependent entities may be missed or over-redacted
- Non-English text may have reduced detection accuracy
- Service unavailable on Render free tier cold starts causing timeout

## How this service works

Strip personal information from a passage and report exactly what was removed. Names, emails, phones, cards, addresses.

## Output

Returns the original text with all detected PII replaced by placeholders, plus an array of removed item types and their counts, a total removed integer, a verdict string summarizing the outcome, the model used for detection, and a disclaimer. Allows downstream systems to verify exactly what sensitive data was present.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "The text to work on. 6000 characters maximum."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "note": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "removed": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "count": {
          "type": "integer"
         }
        }
       }
      },
      "verdict": {
       "type": "string"
      },
      "redacted": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "totalRemoved": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-pii-redaction-3631fe4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
