# Predge Whale Data

> Predge Whale Data is a paid API for AI agents from api.predge.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a full analytics profile for a Polymarket wallet including Predge score, win rates, modeled P&L, trade history, and top market categories

## Facts

- Endpoint: GET https://api.predge.io/v1/wallets/:address
- Price: $0.01/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-73781ac4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K5iPopSKZFNkI7St_KLGY

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-73781ac4
```

Example prompt: Pull up the full Predge profile for Polymarket wallet 0x3a2f... — I want to see their score, win rates, modeled P&L, and what market categories they trade most.

## When to prefer this

Use this endpoint when you need a comprehensive, scored profile of a specific Polymarket wallet address — including skill score, win rates, and trading history — rather than a list or leaderboard. Prefer this over generic on-chain lookups when you need Predge's proprietary scoring and category affinity data. Best suited for copy-trading research, whale vetting, or competitor intelligence on individual wallets. Not suitable if you need real-time trades (15-min delay applies) or confirmed realized P&L (modeled estimates only).

## Known failure modes

- 404 Not Found — wallet address is unknown to Predge dataset (not charged); wallet may be too new, inactive, or not yet indexed
- 400 Bad Request — address not in valid 0x lowercase proxy-wallet format
- Rate limit exceeded — too many calls in a short window
- Stale trade data — last 20 trades are delayed by 15 minutes, not real-time
- Modeled P&L is a heuristic estimate over resolved markets, not actual realized or settled P&L — may not reflect true profitability

## How this service works

Full profile of one Polymarket wallet (path param: 0x… proxy-wallet address, lowercase). Returns Predge score (0-100), win rates (live-computed 7d/30d from resolved markets + scorer's 30d/90d — outcome_verified: {win_rate: true, pnl: false}), all-time totals (trades, avg position, and modeled_pnl_30d_usd/modeled_pnl_all_time_usd — a MODELED binary-payout estimate over RESOLVED markets, all_time genuinely unbounded, matching the wallet-history curve; NOT realized/settled P&L, see the note field), top-5 favorite market categories, and the last 20 trades delayed 15 minutes. 404 (not charged) for wallets unknown to the Predge dataset.

## Output

A JSON object containing: Predge score (0–100 composite skill rating), verified win rates (live 7d and 30d from resolved markets, plus scorer's 30d and 90d rolling), modeled P&L estimates (30d and all-time in USD, binary-payout model over resolved markets — not realized/settled P&L), all-time trade count, average position size, top-5 favorite Polymarket market categories, and the last 20 trades with a 15-minute delay. Returns 404 (uncharged) 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": {}
    }
   },
   "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-73781ac4/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)
