# Predge Whale Data — Wallet Trade History & Win-Rate

> Predge Whale Data — Wallet Trade History & Win-Rate is a paid API for AI agents from api.predge.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns historical trades, running win-rate, and modeled PnL curve for a specific Polymarket proxy-wallet address over a configurable lookback window

## Facts

- Endpoint: GET https://api.predge.io/v1/wallets/:address/history
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-whale-data-wallet-trade-history-win-rate-979fd737
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T5WluXrRpbkx4F_jcCIXf

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-whale-data-wallet-trade-history-win-rate-979fd737
```

Example prompt: Pull up the last 90 days of trade history and win-rate for Polymarket wallet 0x1234abcd… on Predge — I want to see how this whale has been performing and what their modeled PnL curve looks like.

## When to prefer this

Choose this endpoint when you need historical trade-level detail and win-rate analytics for a specific Polymarket wallet address. It is the right choice for due-diligence on whale traders, copy-trading evaluation, or tracking a known wallet's performance over time. Prefer this over generic on-chain data sources when you want Predge's curated dataset with pre-computed win-rate and modeled PnL curve. Use the 30d window for recent performance checks, 90d for medium-term, and 'all' for lifetime track record. Note the PnL is modeled, not settled — do not use it as a substitute for verified on-chain realized P&L.

## Known failure modes

- 404 Not Found — wallet address is unknown to Predge dataset (not charged)
- Invalid wallet address format — non-0x or malformed proxy-wallet address
- Unresolved trades have won: null and modeled_pnl_usd: null and do not contribute to the PnL curve
- modeled_pnl_usd is a model estimate (assumes $1 binary payout per winning share) and is NOT verified realized P&L
- Trades array capped at 500 but summary statistics cover the full window — agent must check trades_capped flag
- 15-minute data delay means very recent trades may not appear
- window=all is unbounded (window_days: null) and may return very large summary ranges for highly active wallets

## How this service works

Historical trades for one wallet (path param: 0x… proxy-wallet address) plus a running win-rate & MODELED-PnL curve, computed ONLY from RESOLVED markets (modeled_pnl_usd is a MODELED estimate, NOT realized/settled P&L — it assumes a $1 binary payout per winning share, shares = size_usd ÷ entry price; not a substitute for on-chain settled P&L). Unresolved trades still appear (won: null, modeled_pnl_usd: null) but do not move the curve. Query param: window (30d|90d|all, default 30d — "all" is UNBOUNDED, window_days: null). The trades array is capped at 500 most-recent-first, but summary is computed over EVERY trade in the window (see summary.trades_returned / trades_capped), so the total matches this wallet's profile. 15 min delay. 404 (not charged) for wallets unknown to the Predge dataset. outcome_verified: {win_rate: true, pnl: false}.

## Output

Returns a trades array (up to 500 most-recent-first) with individual trade details including won status and modeled_pnl_usd (null for unresolved), plus a summary object containing win_rate (verified), total trades in window, trades_returned, trades_capped flag, and the cumulative modeled PnL curve computed only over resolved markets. 15-minute data delay. Returns 404 (not billed) if the wallet is not in the Predge dataset.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "window": {
       "enum": [
        "30d",
        "90d",
        "all"
       ],
       "type": "string",
       "description": "Lookback window (default 30d)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-whale-data-wallet-trade-history-win-rate-979fd737/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.predge.io](https://www.zero.xyz/host/api.predge.io/llms.txt)
