# Whale Radar — Polymarket Wallet Intelligence

> Whale Radar — Polymarket Wallet Intelligence is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches open positions, recent trades, and portfolio activity for a given Polymarket proxy wallet address

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/whale-radar
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whale-radar-polymarket-wallet-intelligence-0f4d5198
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t-SiUHwNlsASuwK571fhC

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 whale-radar-polymarket-wallet-intelligence-0f4d5198
```

Example prompt: Look up the open positions and last 20 trades for this Polymarket wallet 0x7a9dc87be2c72791fd86fad5f67be7c5dc89ba5d — include closed positions too so I can see the full picture.

## When to prefer this

Use this endpoint when you need on-chain Polymarket portfolio intelligence for a specific wallet — open positions, trade history, and position values — without needing a Polymarket account or API key. Ideal for whale-watching, competitor analysis, or monitoring a known trader's prediction market activity. Prefer this over generic blockchain explorers when you want structured, Polymarket-specific position and trade data rather than raw transaction logs.

## Known failure modes

- Invalid wallet address format (must be 0x-prefixed 42 hex chars) returns validation error
- Wallet address is not a Polymarket proxy wallet — no data found
- activity_limit or positions_limit out of range (must be 1–50) returns error
- Payment failure or insufficient USDC balance blocks the request
- Polymarket data unavailable or Polygon RPC issues cause upstream errors

## How this service works

Polymarket whale intelligence for a given proxy wallet address. Returns recent prediction-market trades (market title, outcome, side, size in USDC, price, timestamp) and current open positions (title, size, avg price, current value, unrealized PnL). Infers whale tier (whale/shark/dolphin/minnow) from trade sizes. Use for copy-trading signal generation, market-sentiment cross-reference, or on-chain agent behavior profiling. Free upstream: Polymarket public data API.

## Output

Returns a structured payload containing the wallet's open prediction market positions (up to the requested limit), recent trade activity (up to the requested limit), and position metadata such as market names, sizes, and values. Closed/redeemable positions are optionally included.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "wallet": "0x7a9dc87be2c72791fd86fad5f67be7c5dc89ba5d",
   "activity_limit": 10,
   "include_closed": false,
   "positions_limit": 10
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whale-radar-polymarket-wallet-intelligence-0f4d5198/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
