Skip to main content
GET
/
polymarket
/
builders
/
{builder_code}
/
top-traders
Top traders for a builder
curl --request GET \
  --url https://api.struct.to/v1/polymarket/builders/{builder_code}/top-traders
[
  {
    "trader": "<string>",
    "volume_usd": 123,
    "txn_count": 123,
    "fees_usd": 123,
    "builder_fees": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.struct.to/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

builder_code
string
required

Builder code.

Query Parameters

timeframe
enum<string>

Window: lifetime, 1d (24h), 7d, 30d (1mo). Default: 1d Time window for cumulative builder stats.

Available options:
lifetime,
1d,
7d,
30d
sort_by
enum<string>

Ranking key: volume (default), txns, fees, builder_fees Sort key for the top-traders ranking.

Available options:
volume,
txns,
fees,
builder_fees
sort_desc
boolean

Sort direction (default: true = highest first).

limit
integer<int64>

Number of traders to return (default 10, max 250)

Response

200 - application/json

Top traders for this builder

trader
string
required
volume_usd
number<double>
required
txn_count
integer<int64>
required
fees_usd
number<double>
required
builder_fees
number<double>
required
Last modified on May 1, 2026