# Polymarket top holders: the whales behind the biggest markets

**Use case:** 

The 200 highest-volume open Polymarket markets (over $100k traded) with the 50 largest positions per outcome: wallet, display name, shares. Public Polymarket data API, no login, no key. Schedule it hourly and diff the runs to see whales enter and exit.

## Input

```json
{
  "platforms": [
    "polymarket"
  ],
  "status": "open",
  "keywords": [],
  "categories": [],
  "minVolume": 100000,
  "minLiquidity": 0,
  "maxItems": 200,
  "includeOrderbook": false,
  "lookbackDays": 7,
  "candlesticks": "none",
  "maxCandlesPerMarket": 5000,
  "includeTrades": false,
  "maxTradesPerMarket": 1000,
  "excludeMultiLeg": true,
  "kalshiSeriesTickers": [],
  "polymarketTagIds": [],
  "polymarketSortBy": "volume24hr",
  "includeComments": false,
  "maxCommentsPerEvent": 500,
  "includeHolders": true,
  "maxHoldersPerOutcome": 50,
  "language": "en",
  "archiveOnly": false
}
```

## Output

```json
{
  "platform": {
    "label": "Platform"
  },
  "question": {
    "label": "Question"
  },
  "category": {
    "label": "Category"
  },
  "status": {
    "label": "Status"
  },
  "yesPrice": {
    "label": "Yes"
  },
  "noPrice": {
    "label": "No"
  },
  "yesBid": {
    "label": "Yes bid"
  },
  "yesAsk": {
    "label": "Yes ask"
  },
  "volume": {
    "label": "Volume"
  },
  "volume24h": {
    "label": "Volume24h"
  },
  "liquidity": {
    "label": "Liquidity"
  },
  "closeTime": {
    "label": "Close time"
  },
  "result": {
    "label": "Result"
  },
  "url": {
    "label": "Market",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Prediction Markets Scraper – Kalshi + Polymarket Odds & Prices](https://apify.com/gratified_ashram/prediction-markets-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/gratified_ashram/prediction-markets-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/gratified_ashram/prediction-markets-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
