# EMC2 AI Whale Intel (with AI Analysis)

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

Returns a token-centric whale accumulation view including net capital flows, top holder rankings, and AI-generated analysis for a given token.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/whaleintel
- Price: $1/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-43ae1b75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uUo6cESrzN81W2sGkQJxj

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-43ae1b75 -d '<json body>'
```

Example prompt: Pull up the whale intel report for token 0x1234...abcd on BSC — show me which wallets are the top holders, net capital flows, and whether whales are accumulating or distributing, with an AI summary.

## When to prefer this

Use this endpoint when you need a token-specific view of whale behavior — who holds the most, how capital is flowing in or out, and whether large holders are accumulating or selling. Prefer this over wallet-centric endpoints when your primary question is about a specific token rather than a specific trader. The AI analysis layer adds interpretive narrative on top of raw on-chain data.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty result
- Unsupported blockchain network returns a validation error
- Bitquery data unavailable or rate-limited returns a 503 or timeout
- Malformed POST body returns a 400 bad request
- Payment not received results in 402 Payment Required

## How this service works

Token-centric whale accumulation view with net capital flows and top holders. (with AI analysis)

## Output

Returns a structured report of the token's top whale wallets ranked by holdings, net capital inflows and outflows, accumulation vs distribution signals, and an AI-generated narrative summarizing what the whale activity implies about market sentiment.

## 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)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "result": {},
 "status": "completed",
 "analysis": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-43ae1b75/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)
