ToolAssay

BitBooth PII Redact

BitBooth 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. Compliance primitive for agents in regulated industries (health, finance, legal). Pure regex — no LLM inference, deterministic output.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
584 msmedian answer time
$0.008listed price per call
$0.008price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://app.heinrichstech.com/v1/cdp/pii-redact

CategoryCode and developer
Provider hostapp.heinrichstech.com
Networkseip155:1440000, eip155:8453, stellar:pubnet, xrpl:0
Payment schemesexact, onchain
Self-reported calls, 30 days2 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.008 584 ms

Example input (from the provider)

{
  "body": {
    "patterns": [
      "email",
      "phone"
    ],
    "replacement": "[REDACTED]",
    "text": "Email me at alice@example.com or 555-123-4567"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "patterns": {
              "items": {
                "enum": [
                  "email",
                  "phone",
                  "ssn",
                  "creditCard",
                  "ipv4",
                  "hexSecret"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "replacement": {
              "type": "string"
            },
            "text": {
              "type": "string"
            }
          },
          "required": [
            "text"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON