Politician P&L leaderboard
GET
/api/v1/public/senate-insiders/discovery/pnl-leaderboard3 credits / callAPI key required
Ranks politicians by estimated profit and loss on their disclosed trades, updated nightly. Each entry reports estimated realized, unrealized, and total P&L, win rate, realized-trade count, total buy/sell value, and distinct tickers traded. P&L figures are estimates derived from disclosed amount ranges and historical prices, not actual brokerage statements.
Parameters
Query
Time horizon of the leaderboard snapshot.
Restrict to one chamber.
Restrict to one party.
Ranking field.
Sort direction.
Maximum number of results (1-500, default 50)
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders/discovery/pnl-leaderboard?sortBy=volume&sortOrder=desc&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/discovery/pnl-leaderboard?sortBy=volume&sortOrder=desc&limit=10&offset=0example · 200
{
"success": true,
"data": {
"entries": [
{
"slug": "ron-wyden",
"displayName": "Ron Wyden",
"party": "D",
"state": "OR",
"chamber": "Senate",
"estimatedRealizedPnl": 47440.34,
"estimatedUnrealizedPnl": 18648993.46,
"estimatedTotalPnl": 18696433.8,
"winRate": 0.4416,
"realizedTrades": 77,
"totalBuyValue": 6811000,
"totalSellValue": 2876000,
"tickersTraded": 65,
"lastTradeDate": "2020-08-20T22:00:00.000Z",
"agency": null,
"title": null,
"level": null
},
{
"slug": "michael-mccaul",
"displayName": "Michael McCaul",
"party": "R",
"state": "TX",
"chamber": "House",
"estimatedRealizedPnl": 2402550.07,
"estimatedUnrealizedPnl": 12795708.91,
"estimatedTotalPnl": 15198258.98,
"winRate": 0.6964,
"realizedTrades": 741,
"totalBuyValue": 53183000,
"totalSellValue": 77265000,
"tickersTraded": 201,
"lastTradeDate": "2025-04-30T22:00:00.000Z",
"agency": null,
"title": null,
"level": null
}
],
"total": 271,
"limit": 25,
"offset": 0
}
}