# ChainRay Whale Tracker

> ChainRay Whale 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-12).

Tracks whale wallet activity and large on-chain movements for a given blockchain address across supported chains

## Facts

- Endpoint: GET https://chainray.online/whale-tracker/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-whale-tracker-597bbe57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hF0_jcwK1FP2OPO42VFRw

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-whale-tracker-597bbe57
```

Example prompt: Can you check ChainRay's whale tracker for the wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum and tell me what large on-chain movements or whale activity it's been involved in?

## When to prefer this

Use this endpoint when you need to identify whether a specific wallet address exhibits whale-level behavior, trace large on-chain movements, or gather intelligence on significant token holders across 46 supported blockchains. Prefer this over generic blockchain explorers when you need structured, agent-ready intelligence rather than raw transaction data.

## Known failure modes

- Invalid or malformed wallet/contract address returns 400 error
- Unsupported chain identifier returns 400 or 404
- Address not found on specified chain returns empty result or 404
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if too many requests in short succession
- Network-level timeout if chain data is temporarily unavailable

## 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 whale activity data for the specified address including large token transfers, notable on-chain movements, holding patterns, and intelligence signals that indicate whether the wallet qualifies as a whale — contextualized for the specified blockchain network.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  }
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "address": {
       "type": "string",
       "description": "Wallet or contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-whale-tracker-597bbe57/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)
