# ChainRay Whale Alerts

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

Returns recent large-transaction whale alerts across specified blockchain networks such as Base, Ethereum, or Polygon

## Facts

- Endpoint: GET https://chainray.online/whale-alerts
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-online-c40b23c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r1e9-hwTzZfX5_cDsv_wB

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-online-c40b23c9
```

Example prompt: Show me the latest whale alerts on Base — any large transactions or big wallet movements I should know about.

## When to prefer this

Use this endpoint when you need real-time or recent large-transaction alerts for a specific blockchain network. Prefer this over /whale-tracker when you want a feed of alerts rather than tracking a specific wallet, and over /market-overview when you specifically want whale movement signals rather than broad market data.

## Known failure modes

- Unsupported chain value returns error or empty result
- Missing chain parameter may default to base or return an error
- Network unavailability causes 5xx response
- Payment not accepted returns 402 status
- Rate limiting may return 429 if called too frequently

## 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 list of recent large on-chain transactions (whale alerts) for the specified blockchain network, including details such as wallet addresses, transaction amounts, token involved, and timestamps.

## 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-online-c40b23c9/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)
