# News Gurus Whale Wallet Intelligence

> News Gurus Whale Wallet Intelligence is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns on-chain whale wallet activity including buy/sell counts, USD volumes, and cabal intelligence for the top active large wallets

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/prediction/whales
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-whale-wallet-intelligence-0e1d7ca1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_63xjhK8creU1HDfgasrnk

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 news-gurus-whale-wallet-intelligence-0e1d7ca1
```

Example prompt: Show me the top 50 whale wallets that have been buying crypto recently — I want their addresses, how many buys and sells they've made, and the total USD volume for each.

## When to prefer this

Choose this endpoint when you need real-time on-chain large-wallet (whale) buy/sell intelligence, especially for detecting accumulation, coordinated cabal behavior, or big-money flow across crypto markets. Prefer this over generic news or sentiment APIs when the user specifically wants wallet-level on-chain data with USD volume context rather than social signals or price data.

## Known failure modes

- Invalid limit value (outside 1-100 range) returns a validation error
- Payment not processed correctly via x402 returns 402 Payment Required
- Service unavailable or upstream data lag may return 503 or stale data
- Empty results if no whale activity detected in the current window
- Rate limiting if called too frequently without sufficient payment

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object containing an array of whale wallet objects (address, buy_count, sell_count, total_buy_usd, total_sell_usd, markets_touched), a cabal_intel array for coordinated wallet group signals, the total wallet count, and a fetched_at ISO timestamp indicating data freshness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 100,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wallets": [
   {
    "address": "0xdef...",
    "buy_count": 1,
    "sell_count": 0,
    "total_buy_usd": 25000,
    "total_sell_usd": 0,
    "markets_touched": 1
   }
  ],
  "fetched_at": "2026-07-17T14:05:00+00:00",
  "cabal_intel": [],
  "total_wallets": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-whale-wallet-intelligence-0e1d7ca1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
