# ChainRay Whale Move Predictor

> ChainRay Whale Move Predictor is a paid API for AI agents from chainray.online, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Predicts large whale wallet movements on a specified blockchain network using on-chain intelligence

## Facts

- Endpoint: GET https://chainray.online/predict/whale-move
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-whale-move-predictor-71dd1714
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XeTN2X_btVxvuaAgTKrEl

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-move-predictor-71dd1714
```

Example prompt: Can you predict upcoming whale movements on Ethereum right now — I want to know if any large holders are about to make big moves?

## When to prefer this

Use this endpoint when you need predictive signals about large cryptocurrency holder (whale) behavior on a specific blockchain before trades or transfers occur, rather than just historical transaction lookups. Ideal for DeFi risk assessment, trading strategy, or market sentiment analysis requiring forward-looking on-chain intelligence.

## Known failure modes

- Missing or unsupported chain parameter returns an error
- Payment not included or insufficient USDC results in 402 Payment Required
- Invalid chain identifier returns a validation error
- Chain data temporarily unavailable returns a 503 or timeout
- No significant whale activity detected may return empty or low-confidence result

## 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

A prediction or signal about imminent large wallet (whale) movements on the specified blockchain, likely including predicted transaction type, magnitude, wallet category, and confidence indicators based on on-chain pattern analysis.

## 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-whale-move-predictor-71dd1714/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)
