# Predge Polymarket Whale Trades Feed

> Predge Polymarket Whale Trades Feed is a paid API for AI agents from x402-api-production-266e.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest large Polymarket trades (>= $10,000 notional) with market details, side, size, price, wallet address, and Predge wallet score (30-day win rate), with a 15-minute delay.

## Facts

- Endpoint: GET https://x402-api-production-266e.up.railway.app/v1/whales/latest
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-polymarket-whale-trades-feed-0ac16195
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VM7a5cPn_jr8EOWVhz7G9

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 predge-polymarket-whale-trades-feed-0ac16195
```

Example prompt: Pull the latest 20 whale trades from Polymarket — the ones over $10k — and show me which market they're trading, whether they're buying YES or NO, and each wallet's Predge score.

## When to prefer this

Use this endpoint when you need a broad, recent snapshot of all large Polymarket trades across all markets, including wallet quality signals (Predge score). Prefer this over the per-market or per-wallet endpoints when you want a cross-market view of whale activity rather than drilling into a specific market or trader profile.

## Known failure modes

- limit parameter out of range (must be 1–100) returns a 400 error
- payment not attached or insufficient USDC causes a 402 error
- data may be stale up to 15 minutes due to pipeline delay
- no trades returned if no qualifying whale activity occurred recently
- invalid query parameter type returns validation error

## How this service works

Polymarket whale trades and smart-money signals from the Predge tracking pipeline, sold per-call over the x402 payment protocol. No API keys, no accounts.

## Output

A list of up to 100 recent Polymarket trades of $10,000+ notional value, each including the market name, trade side (YES/NO), size, price, the trader's wallet address, and their Predge wallet score (0–100 scale reflecting 30-day win rate). Data is sourced from Predge's whale-tracking pipeline with a 15-minute delay.

## 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 trades to return (1-100, default 50)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "trades": [
   {
    "side": "yes",
    "price": 0.62,
    "wallet": "0x8dab6cf42d7e4d1cd6cca897b9e12a8cbe6d69e8",
    "tx_hash": "0x6a7de5…",
    "category": "economics",
    "platform": "polymarket",
    "size_usd": 25400,
    "market_slug": "fed-rate-cut-september",
    "condition_id": "0x178a746e2b342c25b1d78d0f0d0ea77157c9b6d40b2e97ffbf827cd7f9994c39",
    "market_title": "Will the Fed cut rates in September?",
    "wallet_score": 81,
    "block_timestamp": "2026-07-17T09:41:02.000Z",
    "wallet_win_rate_30d": 0.67
   }
  ],
  "delay_minutes": 15,
  "whale_min_usd": 10000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-polymarket-whale-trades-feed-0ac16195/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-266e.up.railway.app](https://www.zero.xyz/host/x402-api-production-266e.up.railway.app/llms.txt)
