Get an executive official's trade history
GET
/api/v1/public/executive-trades/:slug3 credits / callAPI key required
Paginated securities-transaction history for a single executive-branch official, identified by their `exec-` slug (from the roster endpoint). Returns each disclosed transaction with its amount range, sector, and filing detail, plus a buy/sell summary with aggregate dollar values. The `type` and `sort` filters apply to the returned trades.
Parameters
Path
Executive official slug, e.g. `exec-trump-donald-j`
Query
Filter by transaction type
Sort direction by transaction date
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/executive-trades/?type=warrant-terms&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/executive-trades/?type=warrant-terms&limit=10&offset=0example · 200
{
"data": {
"memberSlug": "exec-trump-donald-j",
"memberName": "Trump, Donald J.",
"trades": [
{
"id": "exec:55534",
"ticker": "ADI",
"assetDescription": "ANALOG DEVICES INC",
"assetType": null,
"type": "Purchase",
"transactionDate": "2026-05-11",
"disclosureDate": "2026-05-20",
"filingDelay": 9,
"dateUnverified": false,
"isLateFiling": false,
"amountRange": "$15,001 - $50,000",
"amountMin": 15001,
"amountMax": 50000,
"amountMidpoint": 32500.5,
"owner": "Self",
"comment": null,
"filingUrl": "https://extracts.example/278t/55534",
"exchange": "NASDAQ",
"sectorTag": "Industrials",
"companyName": "ANALOG DEVICES INC",
"source": "executive"
},
{
"id": "exec:55487",
"ticker": "DE",
"assetDescription": "DEERE AND CO",
"assetType": null,
"type": "Purchase",
"transactionDate": "2026-05-11",
"disclosureDate": "2026-05-20",
"filingDelay": 9,
"dateUnverified": false,
"isLateFiling": false,
"amountRange": "$15,001 - $50,000",
"amountMin": 15001,
"amountMax": 50000,
"amountMidpoint": 32500.5,
"owner": "Self",
"comment": null,
"filingUrl": "https://extracts.example/278t/55487",
"exchange": "NYSE",
"sectorTag": "Industrials",
"companyName": "DEERE AND CO",
"source": "executive"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 5126,
"hasMore": true
},
"summary": {
"totalBuys": 2,
"totalSells": 0,
"buyValue": 65001,
"sellValue": 0,
"netValue": 65001
},
"source": "executive"
}
}