# Verity Suite — PII & Secret Redaction (Pro)

> Verity Suite — PII & Secret Redaction (Pro) is a paid API for AI agents from suite.veritylayer.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Scans text payloads for PII, secrets, and credentials before they are sent or stored, returning a signed verdict and structured findings with severity

## Facts

- Endpoint: POST https://suite.veritylayer.dev/redact/pro
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/verity-suite-pii-secret-redaction-pro-c9b4af23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ge_HGDqHbmB33CTr7Q7fY

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 verity-suite-pii-secret-redaction-pro-c9b4af23 -d '<json body>'
```

Example prompt: Before you POST this customer record to our analytics API, scan it for any PII, secrets, or credentials — I need a signed verdict and the specific findings so I know it's safe to send.

## When to prefer this

Choose this endpoint when an AI agent needs a calibrated, fail-closed PII and secret scanner with a cryptographically signed audit receipt — especially for compliance-sensitive pipelines where you need proof of review, destination-aware sensitivity calibration, or detection of embedded prompt injection directives in outbound payloads. Prefer it over generic regex filters when you need structured findings with severity, human-readable reasons, and a verifiable chain of custody.

## Known failure modes

- Payload exceeds 2000 character limit — returns validation error
- Missing required fields (type, method, bodyType, body, payload) — returns 422 schema error
- Ambiguous or encoded content routed to 'review' verdict rather than a definitive clean/flagged decision
- Payment not included or insufficient — returns 402 Payment Required
- Service unavailable or timeout — fail-closed behavior expected given trust-critical nature

## How this service works

The trust fabric for AI agents — calibrated, fail-closed services agents pay per call.

## Output

Returns a JSON object with: a verdict enum (clean, contains_pii, contains_secret, or review), a severity level, an array of structured findings identifying what was detected and where, an array of human-readable reasons explaining the routing decision, and an optional Ed25519-signed VerityLayer receipt that can be independently verified at the engine's POST /receipt/verify endpoint. The receipt is null if signing is not configured.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "context": {
   "anyOf": [
    {
     "type": "string",
     "maxLength": 2000
    },
    {
     "type": "null"
    }
   ],
   "title": "Context",
   "default": null,
   "description": "where this payload is headed (e.g. public log, internal db, third-party API) so sensitivity and severity can be calibrated to the destination"
  },
  "payload": {
   "type": "string",
   "title": "Payload",
   "maxLength": 2000,
   "minLength": 1,
   "description": "the text the agent is about to send or store; scan it for PII, secrets, and credentials"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/verity-suite-pii-secret-redaction-pro-c9b4af23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from suite.veritylayer.dev](https://www.zero.xyz/host/suite.veritylayer.dev/llms.txt)
