# Blockchain Money Map Transaction Decoder

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

Decodes an EVM blockchain transaction hash into a plain-English human-readable explanation for AI agents.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/tx-decode
- Price: $0.25/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-transaction-decoder-dfe99cf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bsB-MSFTI_oh0T6de9mFD

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-transaction-decoder-dfe99cf5 -d '<json body>'
```

Example prompt: Can you decode this Ethereum transaction and tell me in plain English what happened — what moved, who sent it, and where it went? The hash is 0x4e3a1b2c9f8d7e6a5b4c3d2e1f0a9b8c7d6e5f4a3b2c1d0e9f8a7b6c5d4e3f2a.

## When to prefer this

Choose this endpoint when you need a plain-English narrative explanation of what a specific EVM transaction did — particularly useful for non-technical users, compliance reporting, or when an AI agent needs to communicate on-chain activity in natural language. Prefer this over raw RPC calls or block explorers when interpretability and readability matter more than raw data, and when you need support across Ethereum, Base, Polygon, Arbitrum, and Optimism in one unified API.

## Known failure modes

- Invalid or malformed transaction hash returns an error
- Transaction hash not found on the specified chain
- Chain mismatch — hash exists on a different network than specified
- Network timeout if the specified chain's RPC is slow
- Notes field exceeding 1200 characters rejected
- Missing both hash and transactionHash fields returns validation error

## How this service works

Plain-English Blockchain Money Map transaction decode for AI agents.

## Output

A plain-English breakdown of the transaction including what occurred, which addresses were involved, what tokens or ETH were transferred, which smart contracts were called, and a human-readable summary of the overall money flow.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "hash": {
   "type": "string",
   "description": "Alias for transactionHash."
  },
  "chain": {
   "enum": [
    "ethereum",
    "base",
    "polygon",
    "arbitrum",
    "optimism"
   ],
   "type": "string",
   "default": "ethereum"
  },
  "notes": {
   "type": "string",
   "maxLength": 1200
  },
  "transactionHash": {
   "type": "string",
   "description": "Public EVM transaction hash."
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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