# CryptoIntel Polymarket Whale Tracker

> CryptoIntel Polymarket Whale Tracker is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.45/call, status unknown (last checked 2026-09-14).

Surfaces wallets placing large bets ($500+) on a given Polymarket prediction market, including wallet age and position direction

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/poly-whales
- Price: $0.45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-polymarket-whale-tracker-713cf031
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-O7WTzSJxSt6q5cs5J5Y

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 cryptointel-polymarket-whale-tracker-713cf031
```

Example prompt: Show me the top 10 whale wallets placing bets of at least $500 on the Polymarket market for 'US election 2024' — I want to see their wallet age and whether they're betting yes or no.

## When to prefer this

Use this endpoint when you need to identify large, high-conviction traders on a specific Polymarket prediction market — especially when researching smart money signals, detecting insider-like positioning, or analyzing which wallets are driving price movement on a given question.

## Known failure modes

- Market slug not found — returns empty data or error if the keyword doesn't match any active Polymarket market
- No whales found — market exists but no wallets meet the min_usd threshold
- Invalid query parameters — non-numeric limit or min_usd values return validation errors
- Rate limiting or payment failure — 402 response if USDC payment is not properly attached
- Stale data — real-time tracker may have brief lag during high-volume market events

## How this service works

Real-time Polymarket whale tracker — surfaces wallets placing large bets ($500+) on a given market, with wallet age and position direction

## Output

A list of whale wallet addresses with their bet sizes, position direction (yes/no), wallet age, and associated Polymarket market, filtered to bets above the specified minimum USD threshold.

## 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": {
      "limit": {
       "type": "number",
       "description": "Max results (default 10)"
      },
      "market": {
       "type": "string",
       "description": "Polymarket market slug or question keyword"
      },
      "min_usd": {
       "type": "number",
       "description": "Min bet size in USD (default 500)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-polymarket-whale-tracker-713cf031/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
