Policy-event trade overlap leaderboard
GET
/api/v1/public/senate-insiders/discovery/policy-trade-leaderboard3 credits / callAPI key required
Ranks politicians by the number of disclosed trades that co-occur with executive orders affecting the same market sector, updated nightly. Each row reports the flagged-trade count, estimated USD value, top sector, and one example executive order with its day offset from the trade. These rankings reflect sector-level co-occurrence only — a starting point for research, never an assertion of wrongdoing.
Parameters
Query
Rank by estimated USD value or flagged-trade count.
Days around the executive-order signing date to consider.
Whether the trade occurred before, after, or either side of the signing date. Day 0 is always excluded.
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/policy-trade-leaderboard?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/discovery/policy-trade-leaderboard?limit=10&offset=0example · 200
{
"success": true,
"data": {
"rows": [
{
"slug": "donald-j-trump",
"name": "Trump, Donald J.",
"party": "R",
"state": null,
"chamber": "executive",
"photoUrl": null,
"flaggedTradeCount": 1318,
"totalEstimatedUsd": 140602892.5,
"topSector": "Technology",
"exampleEvent": {
"externalId": "2026-06286",
"title": "Addressing DEI Discrimination by Federal Contractors",
"eventDate": "2026-03-26",
"daysDelta": -1
}
},
{
"slug": "jared-isaacman",
"name": "Isaacman, Jared",
"party": null,
"state": null,
"chamber": "executive",
"photoUrl": null,
"flaggedTradeCount": 4,
"totalEstimatedUsd": 12000002,
"topSector": "Technology",
"exampleEvent": {
"externalId": "2026-05382",
"title": "Adjusting Certain Delegations Under the Defense Production Act",
"eventDate": "2026-03-13",
"daysDelta": -3
}
}
],
"sort": "usd",
"window": 14,
"direction": "before",
"freshness": {
"eoDataThrough": "2026-06-03"
},
"pagination": {
"total": 47,
"limit": 50,
"offset": 0
},
"elapsedMs": 22
}
}