# Blockchain Money Map Counterfactual Value Meter

> Blockchain Money Map Counterfactual Value Meter 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-14).

Analyzes an EVM wallet or contract address to produce a counterfactual value assessment report across major chains, covering wallet money maps, contract risk snapshots, or stablecoin business setups.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/devagentpal/counterfactual-value-meter
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-counterfactual-value-meter-4aa029eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_80Hw-VoTkZLTgd8AHCcK7

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-counterfactual-value-meter-4aa029eb -d '<json body>'
```

Example prompt: Run a deep counterfactual value meter report on Ethereum wallet address 0xAbC123...789 — I want the full wallet money map, go deep on it.

## When to prefer this

Choose this endpoint when you need a structured counterfactual value and risk assessment for a specific EVM address across Ethereum, Base, Polygon, Arbitrum, or Optimism — particularly for wallet profiling, smart contract risk screening, or stablecoin project due diligence. Prefer this over generic block explorers when you want an AI-agent-ready JSON analysis rather than raw transaction data.

## Known failure modes

- Invalid or malformed EVM address returns an error
- Unsupported chain value outside the allowed enum causes a validation error
- Address with no on-chain activity may return minimal or empty results
- Exceeding the 1200-character notes limit causes a schema validation failure
- Network or API timeout for addresses with extensive on-chain history
- Payment failure or insufficient USDC balance blocks the request via x402

## How this service works

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

## Output

A JSON report containing a counterfactual value assessment tailored to the selected report type (wallet money map, contract/project risk snapshot, or stablecoin creator business setup), including on-chain activity analysis, risk signals, and financial mapping data for the specified EVM address and chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "decision_delta",
    "coalition_attribution"
   ]
  },
  "policy": {
   "type": "object",
   "required": [
    "minimumMaterialUtilityChange",
    "minimumValueToCostRatio"
   ],
   "properties": {
    "minimumConfidenceChange": {
     "anyOf": [
      {
       "type": "number",
       "maximum": 1,
       "minimum": 0
      },
      {
       "type": "null"
      }
     ]
    },
    "minimumValueToCostRatio": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "minimumMaterialUtilityChange": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    }
   },
   "additionalProperties": true
  },
  "purchase": {
   "type": "object",
   "required": [
    "purchaseId",
    "cost",
    "evidenceItemId",
    "evidenceHash",
    "sourceReceiptHash"
   ],
   "properties": {
    "cost": {
     "type": "string",
     "pattern": "^(?=.*[1-9])\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "currency": {
     "enum": [
      "USDC",
      "usdc"
     ],
     "type": "string"
    },
    "purchaseId": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "evidenceHash": {
     "type": "string",
     "pattern": "^(?:sha256:)?[a-fA-F0-9]{64}$"
    },
    "evidenceItemId": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "sourceReceiptHash": {
     "anyOf": [
      {
       "type": "string",
       "pattern": "^(?:sha256:)?[a-fA-F0-9]{64}$"
      },
      {
       "type": "null"
      }
     ]
    }
   },
   "additionalProperties": true
  },
  "utilityScale": {
   "type": "object",
   "required": [
    "minimum",
    "maximum",
    "higherIsBetter"
   ],
   "properties": {
    "name": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "maximum": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "minimum": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "higherIsBetter": {
     "enum": [
      true
     ]
    }
   },
   "additionalProperties": true
  },

… (truncated)
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-counterfactual-value-meter-4aa029eb/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)
