# Polymarket Whales Leaderboard

> Polymarket Whales Leaderboard is a paid API for AI agents from agent.collabrachain.fun, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a ranked leaderboard of the most profitable Polymarket prediction market traders for a given time period, including their win rates, strategies, and positions.

## Facts

- Endpoint: POST https://agent.collabrachain.fun/api/polymarket/intel/whales/leaderboard
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-collabrachain-fun-abb1ebab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJ-5zpxTYV6x1astDSAyF

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 agent-collabrachain-fun-abb1ebab -d '<json body>'
```

Example prompt: Show me the top Polymarket whale traders ranked by profitability over the last 30 days — I want to see who the biggest winners are, their win rates, and what strategies they're using.

## When to prefer this

Use this endpoint when you need a ranked list of top Polymarket traders across a defined time window. Prefer this over individual whale profile endpoints when you want comparative leaderboard data rather than deep analysis of a single trader. Ideal for discovering which traders to follow or emulate without knowing specific wallet addresses.

## Known failure modes

- Invalid period value (not 7d, 30d, or overall) returns validation error
- Payment not included or insufficient USDC results in 402 Payment Required
- Polymarket data temporarily unavailable returns 503 or empty leaderboard
- Network timeout if upstream Polymarket data fetch is slow

## How this service works

🐋 Discover the top Polymarket whales! Get insights into the most profitable prediction market traders. Track their strategies, win rates, and positions to understand what makes them successful.

## Output

A ranked leaderboard of the most profitable Polymarket traders for the specified period (7d, 30d, or overall), including each whale's win rate, trading strategies, current positions, and profit metrics that reveal what makes them successful.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "period": {
   "enum": [
    "7d",
    "30d",
    "overall"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_x402",
  "accepts",
  "resource",
  "x402Version",
  "_paymentRequired",
  "_wwwAuthenticate"
 ],
 "properties": {
  "_x402": {
   "type": "boolean"
  },
  "accepts": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "asset",
     "extra",
     "payTo",
     "scheme",
     "network",
     "mimeType",
     "resource",
     "extensions",
     "description",
     "maxAmountRequired",
     "maxTimeoutSeconds"
    ],
    "properties": {
     "asset": {
      "type": "string"
     },
     "extra": {
      "type": "object",
      "required": [
       "feePayer"
      ],
      "properties": {
       "feePayer": {
        "type": "string"
       }
      }
     },
     "payTo": {
      "type": "string"
     },
     "scheme": {
      "type": "string"
     },
     "network": {
      "type": "string"
     },
     "mimeType": {
      "type": "string"
     },
     "resource": {
      "type": "string"
     },
     "extensions": {
      "type": "object",
      "required": [
       "bazaar"
      ],
      "properties": {
       "bazaar": {
        "type": "object",
        "required": [
         "info",
         "schema"
        ],
        "properties": {
         "info": {
          "type": "object",
          "required": [
           "description"
          ],
          "properties": {
           "description": {
            "type": "string"
           }
          }
         },
         "schema": {
          "type": "object",
          "required": [
           "input",
           "output"
          ],
          "properties": {
           "input": {
            "type": "object",
            "required": [
             "type",
             "method",
             "queryParams"
            ],
            "properties": {
             "type": {
              "type": "string"
             },
             "method": {
              "type": "string"
             },
             "queryParams": {
              "type": "object"
             }
            }
           },
           "output": {
            "type": "object",
            "required": [],
            "properties": {}
           }
          }
         }
        }
       }
      }
     },
     "description": {
      "type": "string"
     },
     "maxAmountRequired": {
      "type": "string"
     },
     "maxTimeoutSeconds": {
      "type": "number"
     }
    }
   }
  },
  "resource": {
   "type": "object",
   "required": [
    "url",
    "mimeType",
    "d
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-collabrachain-fun-abb1ebab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.collabrachain.fun](https://www.zero.xyz/host/agent.collabrachain.fun/llms.txt)
