# Blockchain Money Map Evidence Budget Router

> Blockchain Money Map Evidence Budget Router 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).

Analyzes EVM wallet or contract addresses on multiple chains to produce risk snapshots, wallet money maps, or stablecoin creator business setup reports with configurable depth.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/devagentpal/evidence-budget-router
- 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-evidence-budget-router-ccc7f6bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_19-YMkej-zUsyteUiDvAb

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-evidence-budget-router-ccc7f6bc -d '<json body>'
```

Example prompt: Run a deep wallet money map on Ethereum address 0xAbC123... and tell me where the funds flow, who the major counterparties are, and flag any risk signals.

## When to prefer this

Choose this endpoint when you need structured on-chain intelligence about an EVM address — particularly wallet fund flows, smart contract risk assessments, or stablecoin issuer business setup analysis — across Ethereum, Base, Polygon, Arbitrum, or Optimism. Best suited for due diligence, compliance, or investigative workflows where public blockchain data needs to be synthesized into actionable reports. Prefer over generic blockchain explorers when you need an interpreted, risk-aware report rather than raw transaction data.

## Known failure modes

- Invalid or malformed EVM address returns error
- Unsupported chain value outside enum returns validation error
- Address not found or no on-chain activity yields empty or minimal report
- Payment failure via x402 prevents report generation
- Deep analysis may time out for highly active addresses
- notes field exceeding 1200 characters causes rejection

## 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 the requested analysis type (wallet money map, contract risk snapshot, or stablecoin creator business setup), including on-chain evidence, fund flows, counterparty data, risk signals, and structured findings based on the chosen depth (basic or deep) for the specified EVM chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "task": {
   "type": "object",
   "required": [
    "valueAtRisk",
    "reversibility",
    "impact"
   ],
   "properties": {
    "impact": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "taskId": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "valueAtRisk": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "reversibility": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    }
   },
   "additionalProperties": true
  },
  "policy": {
   "type": "object",
   "required": [
    "budget",
    "targetConfidence",
    "minimumIndependentGroups",
    "executionMode",
    "requiredCoverage"
   ],
   "properties": {
    "budget": {
     "type": "string",
     "pattern": "^\\d+(?:\\.\\d{1,6})?$",
     "description": "Non-negative decimal string, up to six fractional digits."
    },
    "riskBands": {
     "anyOf": [
      {
       "type": "array",
       "items": {
        "type": "object",
        "required": [],
        "properties": {
         "impact": {
          "anyOf": [
           {
            "type": "string",
            "pattern": "\\S",
            "minLength": 1
           },
           {
            "type": "null"
           }
          ]
         },
         "reversibility": {
          "anyOf": [
           {
            "type": "string",
            "pattern": "\\S",
            "minLength": 1
           },
           {
            "type": "null"
           }
          ]
         },
         "minimumConfidence": {
          "anyOf": [
           {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           {
            "type": "null"
           }
          ]
         },
         "minimumIndependentGroups": {
          "anyOf": [
           {
            "type": "integer",
            "maximum": 100,
            "minimum": 1
           },
           {
            "type": "null"
           }
          ]
         }
        },
        "additionalProperties": true
       },
       "maxItems": 50,
       "minItems": 0
      },
      {
       "type": "null"
      }
     ]
    },
    "deadlineMs": {
     "type": "integer",
     "maximum": 86400000,
     "minimum": 1
    },
    "executionMode": {
     "enum": [
      "parallel",
      "sequential"
     ],
     "type": "string"
    },
… (truncated)
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-evidence-budget-router-ccc7f6bc/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)
