# EMC2 AI Whale Intel

> EMC2 AI Whale Intel is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.850000/call, status unknown (last checked 2026-09-15).

Returns token-centric whale accumulation data including net capital flows and top holder rankings for a given token.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/whaleintel/raw
- Price: $0.850000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-f812bc0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_60g9kPf9noymay5fOmEX2

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 emc2ai-io-f812bc0e -d '<json body>'
```

Example prompt: Who are the top whale holders of the token at address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum, and what are the net capital flows — are whales accumulating or distributing?

## When to prefer this

Use this endpoint when you need a token-centric view of whale behavior — specifically who the top holders are and whether large capital is flowing in or out. Prefer this over wallet-centric endpoints (like portfolio or leaderboard endpoints) when the starting point is a specific token contract address rather than a specific wallet.

## Known failure modes

- Invalid or unrecognized token address returns empty or error response
- Unsupported blockchain network returns 400 or empty dataset
- Bitquery data lag may result in slightly stale holder snapshots
- Payment of $0.85 USDC required per call; missing payment returns 402
- Tokens with very low liquidity or new listings may have sparse holder data

## How this service works

Token-centric whale accumulation view with net capital flows and top holders.

## Output

Returns a structured view of the top holders for the specified token, including their wallet addresses, holding sizes, net capital inflows/outflows, and buy/sell activity indicating accumulation or distribution patterns.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-f812bc0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emc2ai.io](https://www.zero.xyz/host/emc2ai.io/llms.txt)
