Get politician policy-event trade overlap
/api/v1/public/senate-insiders/:slug/policy-trade-overlapFor one politician, list disclosed trades that occurred within a window of days before or after the signing of an executive order affecting the traded sector. Each row carries the trade, the nearest executive order, daysDelta (negative = traded before signing, positive = after), the match basis, and a match count, plus a summary. Defaults to trades 1-14 days before signing; same-day trades are always excluded because intraday ordering is unknowable. These are neutral timing observations, not findings of wrongdoing.
Parameters
Path
Politician slug, e.g. ro-khanna (from /senate-insiders).
Query
Match window in days around the signing date (1-30, default 14).
Which side of the signing date to include (default before).
Maximum results to return (1-200, default 50).
Number of results to skip (default 0)
Code example
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders//policy-trade-overlap?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runhttps://api.signal8.ai/api/v1/public/senate-insiders//policy-trade-overlap?limit=10&offset=0{
"data": {
"flags": [
{
"trade": {
"source": "senate",
"id": 383002,
"ticker": "JPM",
"sector": "Financial Services",
"direction": "buy",
"amountMidpoint": 8000,
"transactionDate": "2026-05-18"
},
"nearestEvent": {
"id": 6,
"externalId": "2026-10399",
"title": "Integrating Financial Technology Innovation Into Regulatory Frameworks",
"eventDate": "2026-05-19",
"fullTextUrl": "https://www.federalregister.gov/documents/2026/05/22/2026-10399/integrating-financial-technology-innovation-into-regulatory-frameworks"
},
"daysDelta": -1,
"matchBasis": "sector",
"matchCount": 3
},
{
"trade": {
"source": "senate",
"id": 160313,
"ticker": "GOOGL",
"sector": "Communication Services",
"direction": "sell",
"amountMidpoint": 8000,
"transactionDate": "2026-04-02"
},
"nearestEvent": {
"id": 12,
"externalId": "2026-06961",
"title": "Urgent National Action To Save College Sports",
"eventDate": "2026-04-03",
"fullTextUrl": "https://www.federalregister.gov/documents/2026/04/09/2026-06961/urgent-national-action-to-save-college-sports"
},
"daysDelta": -1,
"matchBasis": "sector",
"matchCount": 3
}
],
"total": 33,
"summary": {
"totalFlags": 33,
"totalEstimatedUsd": 362000,
"topSector": "Healthcare"
},
"window": 14,
"direction": "before",
"freshness": {
"eoDataThrough": "2026-06-03",
"mirror": {
"cursorValue": "2026-06-03T00:00:00.000Z",
"lastTickAt": "2026-06-16T11:04:13.012Z",
"fetchedAt": "2026-06-16T11:37:50.235Z"
}
},
"pagination": {
"limit": 50,
"offset": 0
},
"elapsedMs": 4
}
}