# AI Rook Smart Money Transfer Scanner

> AI Rook Smart Money Transfer Scanner is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Scans recent Base blockchain blocks for large on-chain transfers of USDC, WETH, or DEUS above a specified minimum value, returning smart money movement data

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/smart-money
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-smart-money-transfer-scanner-f17c1941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YYns350lF_uvVynxlZtLz

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 ai-rook-smart-money-transfer-scanner-f17c1941
```

Example prompt: Show me all USDC transfers above 50,000 on Base from the last 100 blocks — I want to see where the smart money is moving right now.

## When to prefer this

Use this endpoint when you need real-time on-chain smart money detection for USDC, WETH, or DEUS on Base mainnet, specifically scanning recent blocks for large transfers above a configurable threshold. Prefer this over general blockchain explorers when you want pay-per-call access without API keys and need structured, agent-ready output with no signup friction.

## Known failure modes

- Invalid or unsupported asset symbol returns error
- Block count exceeding maximum (~100 blocks) may be capped or rejected
- Payment failure in USDC on Base mainnet results in 402 response
- Sparse block activity may return an empty transfers array
- Network congestion on Base may delay response

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

A JSON object containing the scanned asset, chain name, minimum value filter applied, timestamp, total transfers found, and an array of individual transfer records each with sender address, recipient address, asset, value, and transaction hash.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "enum": [
        "USDC",
        "WETH",
        "DEUS"
       ],
       "type": "string",
       "default": "USDC"
      },
      "blocks": {
       "type": "integer",
       "default": 100,
       "description": "Number of recent blocks to scan (max ~100=15min)"
      },
      "min_value": {
       "type": "number",
       "default": 10000,
       "description": "Minimum transfer value in asset units"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "USDC",
  "chain": "base",
  "min_value": 10000,
  "timestamp": "2026-07-22T07:00:00Z",
  "transfers": [
   {
    "to": "0x222...",
    "from": "0x111...",
    "asset": "USDC",
    "value": 250000,
    "tx_hash": "0xabc..."
   }
  ],
  "transfers_found": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-smart-money-transfer-scanner-f17c1941/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
