# Blockchain Money Map Deep Wallet Report

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

Generates a deep analysis report of an EVM wallet or contract address on major chains, including money map, risk snapshot, or stablecoin business setup breakdowns.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/deep-wallet-report
- Price: $5/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-deep-wallet-report-e819b3aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b-gFAU0EedzOdPNS6ZEp-

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-deep-wallet-report-e819b3aa -d '<json body>'
```

Example prompt: Can you run a deep wallet money map report on 0xAbC1234...5678 on the Base chain? I want to see the full breakdown of what this address has been doing.

## When to prefer this

Choose this endpoint when you need a comprehensive, structured on-chain analysis of a specific EVM wallet or contract address across major chains like Ethereum, Base, Polygon, Arbitrum, or Optimism. It is particularly valuable for due diligence on wallets or contracts, DeFi risk assessment, stablecoin project auditing, or mapping financial flows — especially when you need more depth than a simple balance or transaction list lookup. It is not suited for real-time transaction monitoring or off-chain identity resolution.

## Known failure modes

- Invalid or malformed wallet/contract address returns error
- Unsupported chain value outside the allowed enum returns validation error
- Payment failure via x402 protocol causes 402 response and no report is generated
- Address with no on-chain history may return minimal or empty report data
- Deep analysis on highly active wallets may time out or return partial results

## How this service works

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

## Output

A structured JSON report containing on-chain analysis of the requested wallet or contract. Depending on the report type, this includes transaction history mapping, fund flow visualization data, risk indicators, counterparty relationships, stablecoin business structure details, or contract project risk metrics across the specified EVM-compatible blockchain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "ethereum",
    "base",
    "polygon",
    "arbitrum",
    "optimism"
   ],
   "type": "string",
   "default": "ethereum"
  },
  "depth": {
   "enum": [
    "basic",
    "deep"
   ],
   "type": "string",
   "default": "deep"
  },
  "notes": {
   "type": "string",
   "maxLength": 1200
  },
  "address": {
   "type": "string",
   "description": "Public EVM wallet or contract address."
  },
  "reportType": {
   "enum": [
    "wallet_money_map",
    "contract_project_risk_snapshot",
    "stablecoin_creator_business_setup"
   ],
   "type": "string",
   "default": "wallet_money_map"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-deep-wallet-report-e819b3aa/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)
