Most active congressional traders
GET
/api/v1/public/senate-insiders/discovery/most-active3 credits / callAPI key required
Ranks members of Congress and executive-branch officials by STOCK Act trade count over a lookback window. Returns each politician's trade count, distinct tickers traded, buy/sell/net disclosed value, and top tickers. Use `insiderCategory` to scope to one chamber, or `all` (the default) to merge congressional and executive activity.
Parameters
Query
Lookback window for trade activity.
Restrict to one chamber, or merge all sources.
Maximum number of results (1-500, default 50)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders/discovery/most-active?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/discovery/most-active?limit=10example · 200
{
"success": true,
"data": {
"senators": [
{
"name": "Trump, Donald J.",
"urlSlug": "donald-j-trump",
"party": "R",
"state": null,
"tradeCount": 7826,
"tickersTraded": 0,
"buyValue": 0,
"sellValue": 0,
"netValue": 0,
"topTickers": [],
"chamber": "executive",
"title": "President of the United States",
"agency": "Executive Office of the President",
"level": "Cabinet",
"source": "executive",
"lastTradeDate": "2026-05-11"
},
{
"name": "Power, Samantha",
"urlSlug": "samantha-power",
"party": null,
"state": null,
"tradeCount": 403,
"tickersTraded": 0,
"buyValue": 0,
"sellValue": 0,
"netValue": 0,
"topTickers": [],
"chamber": "executive",
"title": "Administrator",
"agency": "Agency for International Development (AID)",
"level": "Cabinet",
"source": "executive",
"lastTradeDate": "2025-01-05"
}
]
}
}