# Blockchain Money Map Saved Report API

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

Generates a saved blockchain analysis report (wallet money map, contract risk snapshot, or stablecoin business setup) for a given EVM address on multiple chains, paid via x402.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/saved-report
- Price: $1/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-saved-report-api-1ce2b311
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rymTBk7ZwB40unUOpX12X

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-saved-report-api-1ce2b311 -d '<json body>'
```

Example prompt: Pull a deep wallet money map report for Ethereum address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum — I want to see where the money flows.

## When to prefer this

Choose this endpoint when you need a structured, saved analytical report about an EVM address — specifically wallet financial flow mapping, contract risk snapshots, or stablecoin business setup analysis — across Ethereum, Base, Polygon, Arbitrum, or Optimism. Prefer this over raw transaction lookup endpoints when you need a synthesized, human-readable or agent-consumable analysis rather than raw transaction data. Use when the goal is risk assessment, due diligence, or financial flow understanding rather than simple transaction status checks.

## Known failure modes

- Invalid or malformed EVM address returns an error response
- Unsupported chain value outside the allowed enum causes a validation error
- Payment failure via x402 results in a 402 Payment Required response
- Address with no on-chain activity may return a minimal or empty report
- Deep analysis on contracts with complex logic may time out or return partial results
- Notes field exceeding 1200 characters will be rejected

## 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 structured blockchain analysis — depending on report type, this includes wallet transaction flows and counterparty mapping (wallet_money_map), smart contract risk indicators and project metadata (contract_project_risk_snapshot), or stablecoin issuer business structure analysis (stablecoin_creator_business_setup). The report reflects the requested chain and depth level.

## 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-saved-report-api-1ce2b311/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)
