Tool tree
Track Polymarket traders, explore markets, and access Polymarket data. Follow top traders and monitor whale activity. Free real-time analytics.
search_marketsAnswer
Full-text search across Polymarket prediction markets. Returns matching markets with current odds, volume, and links.
View tool JSON
{
"name": "search_markets",
"kind": "answer",
"impl": "imperative",
"description": "Full-text search across Polymarket prediction markets. Returns matching markets with current odds, volume, and links.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (e.g. \"2028 election\")"
},
"limit": {
"type": "number",
"description": "Max results (default 10)",
"minimum": 1,
"maximum": 50
}
},
"required": [
"query"
]
}
}get_leaderboardAnswer
Top Polymarket traders ranked by PnL, volume, or ROI.
View tool JSON
{
"name": "get_leaderboard",
"kind": "answer",
"impl": "imperative",
"description": "Top Polymarket traders ranked by PnL, volume, or ROI.",
"inputSchema": {
"type": "object",
"properties": {
"sort": {
"type": "string",
"enum": [
"pnl",
"volume",
"roi"
],
"description": "Sort metric"
},
"limit": {
"type": "number",
"description": "Max rows (default 25)",
"minimum": 1,
"maximum": 100
}
}
}
}get_trader_profileAnswer
Performance stats, PnL, and badges for a Polymarket trader by wallet address.
View tool JSON
{
"name": "get_trader_profile",
"kind": "answer",
"impl": "imperative",
"description": "Performance stats, PnL, and badges for a Polymarket trader by wallet address.",
"inputSchema": {
"type": "object",
"properties": {
"wallet": {
"type": "string",
"description": "EOA or Polymarket proxy address (0x...)",
"pattern": "^0x[a-fA-F0-9]{40}$"
}
},
"required": [
"wallet"
]
}
}get_whale_tradesAnswer
Recent large trades on Polymarket above a USD threshold.
View tool JSON
{
"name": "get_whale_trades",
"kind": "answer",
"impl": "imperative",
"description": "Recent large trades on Polymarket above a USD threshold.",
"inputSchema": {
"type": "object",
"properties": {
"min_usd": {
"type": "number",
"description": "Minimum trade size in USD (default 10000)"
},
"limit": {
"type": "number",
"description": "Max trades (default 25)",
"minimum": 1,
"maximum": 100
}
}
}
}get_site_statsAnswer
Aggregate PolymarketScan platform statistics (markets tracked, volume, active traders).
View tool JSON
{
"name": "get_site_stats",
"kind": "answer",
"impl": "imperative",
"description": "Aggregate PolymarketScan platform statistics (markets tracked, volume, active traders).",
"inputSchema": {
"type": "object",
"properties": {}
}
}navigate_toAction
Navigate the current PolymarketScan tab to a path on polymarketscan.org (e.g. "/markets/<slug>", "/address/<wallet>", "/leaderboard").
View tool JSON
{
"name": "navigate_to",
"kind": "act",
"impl": "imperative",
"description": "Navigate the current PolymarketScan tab to a path on polymarketscan.org (e.g. \"/markets/<slug>\", \"/address/<wallet>\", \"/leaderboard\").",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path starting with \"/\"",
"pattern": "^/.*"
}
},
"required": [
"path"
]
}
}