# Blockchain Money Map Wallet Snapshot

> Blockchain Money Map Wallet Snapshot 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-13).

Returns a structured intelligence snapshot of an EVM wallet including balances, token holdings, NFT activity, transaction count, confidence context, recommended next actions, and explorer-verified data for quick triage.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/wallet-snapshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-wallet-snapshot-29df7fff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ahFWYVON6lyF67IwqEbzF

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-wallet-snapshot-29df7fff -d '<json body>'
```

Example prompt: Give me a deep wallet money map for address 0x1234...abcd on Base — I want to see its token exposure, NFT activity, transaction count, and any recommended next steps for investigation.

## When to prefer this

Choose this endpoint when you need a fast, structured, multi-dimensional snapshot of an EVM wallet or contract across Ethereum, Base, Polygon, Arbitrum, or Optimism — especially when you need confidence context and recommended next actions in a single call rather than stitching together raw RPC calls. Prefer this over generic block explorer scraping when you need AI-agent-friendly structured output with triage recommendations.

## Known failure modes

- Invalid or malformed EVM address returns an error with no data
- Unsupported chain value outside the allowed enum returns a validation error
- Address with no on-chain activity may return empty or minimal fields
- Network congestion or explorer API downtime may cause delayed or partial responses
- Payment failure (insufficient USDC) blocks the request at the x402 layer

## How this service works

Fast wallet intelligence for AI agents. Returns structured wallet balance, token exposure, NFT activity, transaction count, confidence context, recommended next actions, and explorer-backed verification for quick triage and investigation chaining.

## Output

A structured JSON report containing wallet balance, token exposure breakdown, NFT activity summary, transaction count, confidence scores with context, recommended next investigative actions, and explorer-backed verification links — scoped to the requested chain, depth, and report type.

## 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-wallet-snapshot-29df7fff/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)
