# Blockchain Money Map Agent Payment History Summary

> Blockchain Money Map Agent Payment History Summary 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-15).

Returns a summarized history of x402 agent payments for a given payee address on a specified blockchain chain and currency over a configurable lookback period.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/agent-payment-history-summary
- Price: $0.25/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-agent-payment-history-summary-c148835e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qySz8r0wqEjampoHdzhw9

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-payment-history-summary-c148835e -d '<json body>'
```

Example prompt: Can you pull a payment history summary for payee address 0xAbC123...on Base using USDC, looking back 30 days?

## When to prefer this

Choose this endpoint when you need a summarized, agent-friendly view of historical x402 payments received by a specific payee address on a public blockchain. It is ideal for agents auditing revenue, performing compliance checks, or monitoring adoption of an x402-paid service — especially when USDC payment history on a specific chain is the primary concern. Prefer this over raw transaction lookups when you want aggregated analytics rather than individual transaction receipts.

## Known failure modes

- Invalid or unsupported chain identifier returns an error
- Payee address not found or has no payment history returns empty result
- lookback_days outside the 1–365 range returns a validation error
- Unsupported currency (non-USDC) returns an enum validation error
- Payment of $0.25 USDC via x402 fails due to insufficient balance
- Malformed payee address format causes a parsing error

## How this service works

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

## Output

A JSON summary of x402 agent payment history for the specified payee address, including aggregated payment counts, total USDC amounts received, and patterns over the requested lookback period on the given blockchain chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "payee": {
   "type": "string"
  },
  "currency": {
   "enum": [
    "USDC"
   ]
  },
  "lookback_days": {
   "type": "integer",
   "maximum": 365,
   "minimum": 1
  },
  "resource_path": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-agent-payment-history-summary-c148835e/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)
