# Blockchain Money Map PII Minimization Check

> Blockchain Money Map PII Minimization Check is a paid API for AI agents from api.blockchainmoneymap.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Audits a commerce or payment flow's data collection practices to verify PII minimization compliance against a policy or reference baseline.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/x402-commerce-pii-minimization-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-pii-minimization-check-214e4852
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ck0dOHLp4GQLXmBmvuDKw

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 blockchain-money-map-pii-minimization-check-214e4852 -d '<json body>'
```

Example prompt: Run a PII minimization audit on my checkout flow — its purpose is 'sell digital artwork via crypto payment', requested fields are ['email','full_name','wallet_address','shipping_address','phone'], required fields are ['wallet_address'], payment fields are ['wallet_address'], and raw PII is present. Check whether I'm over-collecting personal data.

## When to prefer this

Choose this endpoint when you need a deterministic, policy-aware PII minimization check specifically for commerce or payment data flows — particularly those involving blockchain or x402 payments. Prefer it over general-purpose privacy tools when you need to compare requested vs required vs fulfillment fields, assess raw PII storage, or benchmark against a reference data collection policy in a structured audit format.

## Known failure modes

- Missing required fields 'flow_purpose' or 'requested_fields' returns validation error
- Mode must be exactly 'audit' or request is rejected
- Exceeding maxItems:50 on any array field causes schema rejection
- Malformed policy object may yield incomplete comparison results
- Ambiguous or empty flow_purpose may result in low-confidence audit output

## How this service works

Choose Blockchain Money Map for human-readable public blockchain reports or x402-paid agent API services.

## Output

Returns a structured JSON audit result indicating whether the flow adheres to PII minimization principles, identifying over-collected or unnecessary fields, flagging raw PII exposure risks, assessing account linking data implications, and comparing against a supplied policy or reference facts baseline if provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "audit"
   ]
  },
  "facts": {
   "type": "object",
   "required": [
    "flow_purpose",
    "requested_fields"
   ],
   "properties": {
    "flow_purpose": {
     "type": "string",
     "maxLength": 500
    },
    "payment_fields": {
     "type": "array",
     "maxItems": 50
    },
    "optional_fields": {
     "type": "array",
     "maxItems": 50
    },
    "raw_pii_present": {
     "type": "boolean"
    },
    "redacted_fields": {
     "type": "array",
     "maxItems": 50
    },
    "required_fields": {
     "type": "array",
     "maxItems": 50
    },
    "requested_fields": {
     "type": "array",
     "maxItems": 50
    },
    "fulfillment_fields": {
     "type": "array",
     "maxItems": 50
    },
    "account_linking_present": {
     "type": "boolean"
    }
   },
   "additionalProperties": false
  },
  "policy": {
   "type": "object",
   "additionalProperties": true
  },
  "reference_facts": {
   "type": "object",
   "required": [
    "flow_purpose",
    "requested_fields"
   ],
   "properties": {
    "flow_purpose": {
     "type": "string",
     "maxLength": 500
    },
    "payment_fields": {
     "type": "array",
     "maxItems": 50
    },
    "optional_fields": {
     "type": "array",
     "maxItems": 50
    },
    "raw_pii_present": {
     "type": "boolean"
    },
    "redacted_fields": {
     "type": "array",
     "maxItems": 50
    },
    "required_fields": {
     "type": "array",
     "maxItems": 50
    },
    "requested_fields": {
     "type": "array",
     "maxItems": 50
    },
    "fulfillment_fields": {
     "type": "array",
     "maxItems": 50
    },
    "account_linking_present": {
     "type": "boolean"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-pii-minimization-check-214e4852/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockchainmoneymap.com](https://www.zero.xyz/host/api.blockchainmoneymap.com/llms.txt)
