Skip to main content
GET
/
v2
/
polymarket
/
position
/
{token_id}
/
top-holders
Get Position Top Holders
curl --request GET \
  --url https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.predexon.com/v2/polymarket/position/{token_id}/top-holders")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "condition_id": "<string>",
  "entries": [
    {
      "rank": 123,
      "user": "<string>",
      "token_id": "<string>",
      "position_shares": 123,
      "position_value_usd": 123,
      "side": "<string>",
      "outcome_index": 123,
      "avg_price": 123,
      "realized_pnl": 123,
      "unrealized_pnl": 123,
      "total_pnl": 123,
      "trade_count": 123,
      "first_trade_at": 123,
      "last_trade_at": 123
    }
  ],
  "pagination": {
    "limit": 123,
    "count": 123,
    "has_more": true,
    "pagination_key": "<string>"
  },
  "title": "<string>",
  "market_slug": "<string>",
  "side": "<string>",
  "total_count": 123
}
{
"error": "<string>",
"message": "<string>"
}
{
"error": "<string>",
"message": "<string>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}
{
"error": "<string>",
"message": "<string>"
}
Get the largest holders of a single Polymarket CTF token (one outcome side of a market), ranked by position size. Use this when you have a specific token_id rather than a condition_id — for whole-market top holders across both Yes and No, use Market Top Holders.
Requires Dev or Pro tier. This endpoint is not available on the Free tier.

Pagination

Pass include_count=true to get the total holder count alongside the page. Use the pagination_key cursor from each response to fetch the next page.
ConstraintValue
limitResults per page.
pagination_keyCursor returned by the previous response.

Authorizations

x-api-key
string
header
required

Path Parameters

token_id
string
required

Polymarket CTF token ID

Query Parameters

include_count
boolean
default:false

Include total holder count

limit
integer
default:100

Results per page

Required range: 1 <= x <= 100
pagination_key
string | null

Cursor for pagination

Response

Successful Response

Response for market top holders endpoint.

condition_id
string
required

Market condition ID

entries
TopHolderEntry · object[]
required

Top holder entries

pagination
CursorPagination · object
required

Pagination info

title
string | null

Market title

market_slug
string | null

Market slug

side
string | null

Position side filter applied ('yes', 'no', or null for all)

total_count
integer | null

Total number of holders matching filters (only if include_count=true)