Get politician trade history
GET
/api/v1/public/senate-insiders/:slug/transactions3 credits / callAPI key required
Paginated STOCK Act trade history for one politician. Each row carries the ticker, transaction type, amount range, filing delay, and a late-filing flag, plus a summary of total buys/sells and net value.
Parameters
Path
Politician slug, e.g. ro-khanna (from /senate-insiders).
Query
Filter by transaction type: Purchase or Sale.
Filter by ticker symbol (case-insensitive).
Filter by owner (e.g. Self, Spouse, Joint).
Filter by sector.
When true, return only trades with a resolvable equity ticker (drops bond/option description rows).
Sort field (default date).
Sort direction (default desc). The alias sortDir is also accepted.
Maximum results to return (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//transactions?type=warrant-terms&ticker=AAPL&sortBy=volume&sortOrder=desc&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders//transactions?type=warrant-terms&ticker=AAPL&sortBy=volume&sortOrder=desc&limit=10&offset=0example · 200
{
"data": {
"memberSlug": "ro-khanna",
"memberName": "Ro Khanna",
"trades": [
{
"id": 55547,
"ticker": "",
"assetDescription": "CITY OF AMES IOWA",
"assetType": "",
"type": "Purchase",
"transactionDate": "2022-12-01T23:00:00.000Z",
"disclosureDate": "2023-01-02T23:00:00.000Z",
"filingDelay": 32,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMin": 1001,
"amountMax": 15000,
"amountMidpoint": 8000,
"owner": "Self",
"comment": "",
"filingUrl": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2022/8219318.pdf",
"exchange": null,
"companyName": "CITY OF AMES IOWA",
"priceAtTrade": null
},
{
"id": 55521,
"ticker": "",
"assetDescription": "MONTGOMERY COUNTY TEXAS",
"assetType": "",
"type": "Purchase",
"transactionDate": "2022-12-04T23:00:00.000Z",
"disclosureDate": "2023-01-02T23:00:00.000Z",
"filingDelay": 29,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMin": 1001,
"amountMax": 15000,
"amountMidpoint": 8000,
"owner": "Spouse",
"comment": "",
"filingUrl": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2022/8219318.pdf",
"exchange": null,
"companyName": "MONTGOMERY COUNTY TEXAS",
"priceAtTrade": null
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 2940,
"hasMore": true
},
"summary": {
"totalBuys": 2940,
"totalSells": 0,
"buyValue": 52576500,
"sellValue": 0,
"netValue": 52576500
},
"source": "congressional"
}
}