Recent congressional trades
GET
/api/v1/public/senate-insiders/discovery/recent-trades3 credits / callAPI key required
Returns the most recent STOCK Act disclosed transactions across all politicians, newest first, merging congressional and executive-branch filings. Each row carries the trading politician, ticker, transaction type and date, disclosure date, filing delay, and disclosed amount range. Filter by direction (buy/sell) and chamber.
Parameters
Query
Trailing window of transaction dates to include.
Restrict to purchases or sales. Omit for both.
Restrict to one chamber, or merge all sources.
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/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/discovery/recent-trades?limit=10&offset=0example · 200
{
"success": true,
"data": {
"trades": [
{
"id": 200306,
"senator": {
"name": "Steve Cohen",
"urlSlug": "steve-cohen",
"party": "D",
"state": "TN"
},
"symbol": "SFGYY",
"assetDescription": "SONY FINANCIAL GROUP INC",
"transactionType": "Purchase",
"transactionDate": "2025-12-25T23:00:00.000Z",
"disclosureDate": "2026-05-17T22:00:00.000Z",
"filingDelayDays": 143,
"isLateFiling": true,
"amountRange": "$1,001 - $15,000",
"amountMidpoint": 8000,
"owner": "Self",
"filingLink": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034452.pdf",
"source": "congressional",
"filingDate": "2026-05-17T22:00:00.000Z"
},
{
"id": 345691,
"senator": {
"name": "Tim Walberg",
"urlSlug": "tim-walberg",
"party": "R",
"state": ""
},
"symbol": "UAA",
"assetDescription": "Under Armour Inc",
"transactionType": "Sale",
"transactionDate": "2026-02-09T23:00:00.000Z",
"disclosureDate": "2026-06-03T22:00:00.000Z",
"filingDelayDays": 114,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMidpoint": 8000,
"owner": "Joint",
"filingLink": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034660.pdf",
"source": "congressional",
"filingDate": "2026-06-03T22:00:00.000Z"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 12483,
"hasMore": true
}
}
}