# EVM Whale Transfer Feed

> EVM Whale Transfer Feed is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns recent large on-chain token transfers (whale movements) across EVM chains, showing which wallets are accumulating or distributing big amounts

## Facts

- Endpoint: GET https://api.x402node.dev/chain/whale-transfers
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-whale-transfer-feed-c89464d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jHPtSnPsBSO0B4tI2YI_E

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 evm-whale-transfer-feed-c89464d7
```

Example prompt: Show me the most recent whale transfers for WETH on Ethereum mainnet — I want to see which wallets are moving big amounts so I can tell if smart money is accumulating or distributing before a price move.

## When to prefer this

Use this endpoint when you need real-time on-chain intelligence about large token movements across EVM chains — particularly for identifying smart-money accumulation or distribution signals ahead of price moves. Prefer this over general block data endpoints when the specific focus is large-wallet behavior and flow analysis for a given token.

## Known failure modes

- Invalid or unsupported chain returns 400 or empty result
- Invalid token contract address returns error or no data
- No whale transfers in recent window returns empty list
- API key / payment failure returns 402 or 401
- Rate limit exceeded returns 429

## How this service works

Recent large (whale) transfers of a token across EVM chains - who is moving big amounts, from and to which wallets, signalling accumulation or distribution before price moves - smart-money flow intelligence agents act on, aggregated from data behind an API key. whale transfers, whale alert, large transfers, whale movements, smart money flow, accumulation distribution, big holders moving Accepts payment on Base or Solana — either network works.

## Output

A list of recent large token transfers on the specified EVM chain, each including sender and receiver wallet addresses, transfer amount, token contract, timestamp, and chain identifier — allowing the agent to identify accumulation or distribution patterns by smart-money wallets.

## Example request

```json
{
 "chain": "ethereum",
 "limit": 10,
 "token": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
}
```

## 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",
     "required": [
      "token"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base (default), eth, arbitrum, optimism, polygon"
      },
      "token": {
       "type": "string",
       "description": "Token contract (required)"
      },
      "minUsd": {
       "type": "string",
       "description": "Min transfer amount threshold, default 10000"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-whale-transfer-feed-c89464d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
