Get recent politician trades by ticker
GET
/api/v1/public/senate-insiders/by-ticker/:ticker/recent-trades3 credits / callAPI key required
Reverse lookup: find which politicians recently traded a given ticker. Returns recent STOCK Act disclosures for that symbol with politician info, transaction type, amount range, filing delay, and a public filing link.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
Lookback window in days (1-1825, default 180).
Filter by trade direction (default all).
Maximum results to return (1-200, default 10).
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders/by-ticker/AAPL/recent-trades?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/by-ticker/AAPL/recent-trades?limit=10&offset=0example · 200
{
"data": {
"ticker": "AAPL",
"trades": [
{
"id": 295107,
"politician": {
"name": "David Taylor",
"urlSlug": "david-taylor",
"party": "R",
"state": "OH",
"chamber": "House",
"source": "congressional"
},
"symbol": "AAPL",
"assetDescription": "Apple Inc (2)",
"transactionType": "Sale",
"transactionDate": "2026-05-14T22:00:00.000Z",
"disclosureDate": "2026-05-28T22:00:00.000Z",
"filingDelayDays": 14,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMidpoint": 8000,
"owner": "Self",
"filingLink": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034650.pdf"
},
{
"id": 345704,
"politician": {
"name": "Cleo Fields",
"urlSlug": "cleo-fields",
"party": "D",
"state": "LA",
"chamber": "House",
"source": "congressional"
},
"symbol": "AAPL",
"assetDescription": "Apple Inc",
"transactionType": "Purchase",
"transactionDate": "2026-05-13T22:00:00.000Z",
"disclosureDate": "2026-06-03T22:00:00.000Z",
"filingDelayDays": 21,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMidpoint": 8000,
"owner": "Self",
"filingLink": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034591.pdf"
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 29,
"hasMore": true
}
}
}