# Blockchain Money Map Batch Wallet Snapshot

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

Screens up to 10 EVM wallet addresses in a single paid call, returning structured balance, token exposure, NFT activity, transaction history, confidence context, and recommended triage actions.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/batch-wallet-snapshot
- Price: $0.05/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-batch-wallet-snapshot-aadd899c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oJ087BHOdhhlRaayzjkDy

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-batch-wallet-snapshot-aadd899c -d '<json body>'
```

Example prompt: Screen these 5 Ethereum wallets for me in one shot — 0xABC…, 0xDEF…, 0x123…, 0x456…, 0x789… — I need their balances, token exposure, NFT activity, and any recommended triage actions.

## When to prefer this

Choose this endpoint when you need to screen multiple EVM wallets simultaneously rather than making separate single-wallet calls — it is ideal for triage workflows, due diligence pipelines, airdrop screening, or counterparty risk checks where cost efficiency and structured output with recommended actions matter. Prefer it over general blockchain explorers when you need machine-readable confidence scores and next-action recommendations rather than raw transaction data.

## Known failure modes

- Payment failure (402) if USDC balance is insufficient for the $0.05 call
- Invalid or malformed EVM address returns an error for that entry
- Unsupported chain value outside the allowed enum returns a validation error
- Exceeding 10 addresses in the batch returns a schema validation error
- Rate limiting or timeout for highly active wallets with large transaction histories
- Empty or zero-transaction wallet may return minimal data with low confidence context

## How this service works

Batch wallet intelligence for AI agents. Screens multiple EVM wallets in one paid call and returns structured balance, token exposure, NFT activity, transaction activity, confidence context, and recommended next actions for wallet triage workflows.

## Output

A structured JSON response per wallet address containing native and token balances, ERC-20 token exposure details, NFT activity summary, transaction activity metrics, a confidence context score, and recommended next actions for wallet triage workflows — all returned in a single batched response for up to 10 addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "ethereum",
    "base",
    "polygon",
    "arbitrum",
    "optimism"
   ],
   "type": "string",
   "default": "ethereum"
  },
  "notes": {
   "type": "string",
   "maxLength": 1200
  },
  "addresses": {
   "type": "array",
   "items": {
    "type": "string",
    "description": "Public EVM wallet or contract address."
   },
   "maxItems": 10,
   "minItems": 1
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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