# ChainRay Smart Money Tracker

> ChainRay Smart Money Tracker is a paid API for AI agents from chainray.online, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves smart money on-chain intelligence and wallet activity analytics for a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/smart-money
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-smart-money-tracker-3f0bcbcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nsV_8gxYsNAyPdU0G8f-Q

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 chainray-smart-money-tracker-3f0bcbcb
```

Example prompt: Show me what smart money wallets are doing on Base right now — which addresses are moving funds and what tokens are they accumulating?

## When to prefer this

Use this endpoint when you need to identify and track influential or informed on-chain wallets (smart money) on a specific blockchain. Ideal for DeFi research, token trend identification, and understanding where sophisticated capital is flowing across supported chains like Base, Ethereum, and Polygon.

## Known failure modes

- Unsupported chain name returns an error or empty result
- Network congestion may cause stale data
- Invalid chain parameter causes a 400-level error
- Payment not fulfilled results in 402 response blocking access
- Rate limiting if too many requests are made in quick succession

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

Returns a list of smart money wallets and their recent on-chain activity for the specified blockchain, including notable token flows, DeFi positions, and wallet movement patterns that indicate informed or influential trading behavior.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "base"
  }
 }
}
```

## 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": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-smart-money-tracker-3f0bcbcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
