BitBooth

Pay-per-call endpoint: pii-redact

Pay 0.002 USDC, strip emails, phones, SSNs, credit cards, IPv4 addresses, and hex-looking secrets from a text blob before passing it to an LLM, log sink, or third-party API. Pure regex — no LLM inference, deterministic output, sub-cent per call. Compliance primitive for agents in regulated industries (health, finance, legal). Pairs with prompt-injection-scan as the sanitize-before-model pipeline. Byte counts on the response are auditable evidence of redaction for SOC2 / HIPAA logs.

Method & path
POST /v1/cdp/pii-redact
Price per call
0.002 USDC
Network
Base mainnet (eip155:8453)
Asset
USDC
Category
utility
Facilitator
Coinbase CDP

Try it from a curl client

curl -X POST https://app.heinrichstech.com/v1/cdp/pii-redact \
  -H 'content-type: application/json' \
  -d '{}'

# 1. Server returns 402 with a WWW-Authenticate: X402 challenge.
# 2. Pay 0.002 USDC to 0xDa2F35d283c42dd60B965322394bc658a5c1769F on Base mainnet
#    (your x402 client signs the EIP-712 authorization).
# 3. Retry the same request with the X-PAYMENT header. The Coinbase CDP
#    Facilitator verifies and settles, then the response unlocks.

Try it from a Node x402 client

import { x402Fetch } from '@bitbooth/x402-client';

const res = await x402Fetch('https://app.heinrichstech.com/v1/cdp/pii-redact', {
  method: 'POST',
  body: JSON.stringify({}),
  wallet: process.env.AGENT_PRIVATE_KEY, // signs X-PAYMENT EIP-712
  network: 'eip155:8453',                 // Base mainnet
});
const data = await res.json();

Discovery for agents and indexers

Every x402 client and ecosystem indexer can discover this endpoint without scraping. Hit the JSON feeds below or read the OpenAPI spec directly.