# Blockchain Money Map Agent Wallet Profile

> Blockchain Money Map Agent Wallet Profile 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-14).

Returns a structured blockchain wallet profile for a given address and chain, including optional contract and delegation signals, for AI agent consumption via x402 micropayment.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/agent-wallet-profile
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-agent-wallet-profile-14ad840f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L9ksqa-T1hX-CB9AE6qlu

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-agent-wallet-profile-14ad840f -d '<json body>'
```

Example prompt: Pull a full wallet profile for address 0xAbC123...def on Ethereum, including contract signals and delegation signals, so I can assess its on-chain history.

## When to prefer this

Use this endpoint when you need a structured, machine-readable on-chain wallet profile for a specific address on a given blockchain, especially when contract interaction history or delegation signals are relevant. Prefer this over generic block explorers when you need a clean JSON response tailored for agent workflows and are willing to pay $0.01 USDC per lookup via the x402 protocol.

## Known failure modes

- Invalid or malformed blockchain address returns an error response
- Unsupported chain identifier results in a 400 or similar error
- Payment failure via x402 protocol blocks access to the response
- Address with no on-chain activity may return an empty or minimal profile
- Network timeout or RPC issues may cause delayed or failed responses

## How this service works

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

## Output

A JSON object containing a structured wallet profile for the requested blockchain address, including on-chain activity metrics, and optionally contract interaction signals (e.g. which smart contracts the wallet has interacted with) and delegation signals (e.g. whether the wallet delegates voting power or funds). The response is structured for programmatic agent consumption.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "address": {
   "type": "string"
  },
  "include_contract_signals": {
   "type": "boolean"
  },
  "include_delegation_signals": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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