# Blockchain Money Map – Treasury Dust Map Analyzer

> Blockchain Money Map – Treasury Dust Map Analyzer 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).

Analyzes blockchain payment dust patterns across wallets, rails, and networks to produce a treasury dust map report with optional comparison to reference facts.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/x402-machine-payment-treasury-dust-map
- 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-treasury-dust-map-analyzer-709f094f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Opsud1wgNcL3y4JFVt5u

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-treasury-dust-map-analyzer-709f094f -d '<json body>'
```

Example prompt: Analyze our treasury dust situation: we've processed 5000 payments across 4 rails and 3 networks, with a total dust amount of 0.85 USDC and a dust threshold of 0.01 USDC. Compare it against last month's baseline of 4200 payments, 0.72 USDC dust, same 4 rails and 3 networks.

## When to prefer this

Choose this endpoint when you need a machine-readable, structured dust map analysis of blockchain payment activity across multiple rails and networks, especially when comparing current treasury dust state against a historical or reference baseline. It is well-suited for treasury agents, payment reconciliation pipelines, or DeFi treasury management systems that need programmatic dust accounting rather than a human-readable report.

## Known failure modes

- Missing required fields (payment_count, dust_amount, dust_threshold_amount, rail_count, network_count) returns validation error
- mode must be set to 'analyze' — any other value will be rejected
- Payment failure via x402 protocol results in 402 response before analysis runs
- Malformed JSON body returns 400 error
- reference_facts missing required fields causes reference comparison to fail

## 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 a treasury dust map analysis including dust ratios, summaries by rail and network, policy context evaluation, and optionally a comparative diff against reference_facts if provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "analyze"
   ]
  },
  "facts": {
   "type": "object",
   "required": [
    "payment_count",
    "dust_amount",
    "dust_threshold_amount",
    "rail_count",
    "network_count"
   ],
   "properties": {
    "rail_count": {
     "type": "number"
    },
    "dust_amount": {
     "type": "number"
    },
    "token_count": {
     "type": "number"
    },
    "wallet_count": {
     "type": "number"
    },
    "network_count": {
     "type": "number"
    },
    "payment_count": {
     "type": "number"
    },
    "cleanup_policy": {
     "type": "string",
     "maxLength": 500
    },
    "settlement_cycle": {
     "type": "string",
     "maxLength": 500
    },
    "dust_threshold_amount": {
     "type": "number"
    },
    "average_payment_amount": {
     "type": "number"
    }
   },
   "additionalProperties": false
  },
  "policy": {
   "type": "object",
   "additionalProperties": true
  },
  "reference_facts": {
   "type": "object",
   "required": [
    "payment_count",
    "dust_amount",
    "dust_threshold_amount",
    "rail_count",
    "network_count"
   ],
   "properties": {
    "rail_count": {
     "type": "number"
    },
    "dust_amount": {
     "type": "number"
    },
    "token_count": {
     "type": "number"
    },
    "wallet_count": {
     "type": "number"
    },
    "network_count": {
     "type": "number"
    },
    "payment_count": {
     "type": "number"
    },
    "cleanup_policy": {
     "type": "string",
     "maxLength": 500
    },
    "settlement_cycle": {
     "type": "string",
     "maxLength": 500
    },
    "dust_threshold_amount": {
     "type": "number"
    },
    "average_payment_amount": {
     "type": "number"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-treasury-dust-map-analyzer-709f094f/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)
