# Stratalize Stealth Tokenize Entities

> Stratalize Stealth Tokenize Entities is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Anonymizes free-text PII and named entities by replacing them with deterministic typed tokens, with cryptographic attestation on every call

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/stealth-tokenize-entities
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-stealth-tokenize-entities-9b2232c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aMgWOhvN91_QnordmrjRX

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 stratalize-stealth-tokenize-entities-9b2232c8
```

Example prompt: Anonymize all the PII and named entities in this document — replace names, addresses, and identifiers with typed tokens — and give me the signed attestation receipt: 'Patient John Smith (DOB 04/12/1978) was seen at St. Luke's Hospital, 42 Park Ave, NY, on March 3rd. His SSN is 123-45-6789.'

## When to prefer this

Choose this endpoint when you need PII anonymization with a cryptographic audit trail — particularly in regulated industries (healthcare, finance, legal, compliance) where you must prove that redaction occurred. The signed attestation distinguishes it from plain redaction tools. Prefer it when you need typed tokens (not simple masking) and verifiable receipts for compliance or audit purposes. Note the per-call ephemeral secret: use an account if cross-session token consistency matters.

## Known failure modes

- Empty or missing text parameter returns validation error
- Text exceeding 102,400 characters is rejected
- Payment failure or insufficient USDC balance blocks the call (fail-closed by design)
- Network or attestation service unavailability causes request failure
- Cross-session token consistency not guaranteed without an account — same entity may get different tokens in separate calls

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Anonymize free-text PII and named entities with deterministic typed tokens in one paid call, fail-closed by design and cryptographically attested for verification. Uses a per-request ephemeral secret, so consistency is guaranteed only within the call; cross-session consistency and org dictionary matching require an account

## Output

Returns the input text with all detected PII and named entities replaced by deterministic typed tokens (e.g. [PERSON_1], [ADDRESS_1]), along with a cryptographically signed receipt verifiable at trust.stratalize.com/verify. Token consistency is guaranteed only within the single call; cross-session consistency requires an account.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 102400,
   "minLength": 1,
   "description": "Request parameter: text"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-stealth-tokenize-entities-9b2232c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
