# BlockRun.AI Polymarket Top Holders

> BlockRun.AI Polymarket Top Holders is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the top holders for a specific Polymarket prediction market ranked by position size

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/polymarket/market/0xfbe85201ab2b4acff01cd5a3639039fc813d3448c64db081f70926bd9b9e74e9/top-holders
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-060bddb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1WrB0ioBf0TliDdU0w1gN

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 blockrun-ai-060bddb7
```

Example prompt: Who are the top holders in the Polymarket market 0xfbe85201ab2b4acff01cd5a3639039fc813d3448c64db081f70926bd9b9e74e9? I want to see which wallets have the biggest positions ranked by size.

## When to prefer this

Use this endpoint when you need to identify the largest position holders in a specific Polymarket prediction market by its contract address. Ideal for whale-watching, market sentiment analysis, or understanding concentration risk in a specific prediction market. Prefer this over general wallet analytics endpoints when the goal is market-specific holder ranking rather than per-wallet portfolio analysis.

## Known failure modes

- Invalid or non-existent market address returns empty or error response
- Market has no holders yet — returns empty data set
- Payment failure (x402) if USDC not provided — returns 402 Payment Required
- Network timeout or upstream Polymarket data unavailability

## How this service works

Get top holders for a specific market ranked by position size

## Output

A ranked list of top wallet holders for the specified Polymarket market, including wallet addresses and their respective position sizes, ordered from largest to smallest position.

## Example request

```json
{
 "input": {
  "body": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-ai-060bddb7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
