List and search politicians
/api/v1/public/senate-insidersList and search congressional politicians (and executive-branch officials) who have STOCK Act trading disclosures. Filter by party, US state, committee, or sector, or search by name. Results are paginated and carry trade counts, last trade date, and a net buy/sell direction over the trailing 12 months.
Parameters
Query
Search by politician name (partial match).
Filter by party: D (Democrat), R (Republican), I (Independent).
Filter by US state (2-letter code, e.g. CA, TX).
Filter by committee assignment.
Filter by most-traded sector.
Limit to a branch of government: congressional or executive.
Sort field (default last_trade).
Sort direction (default desc).
Maximum results to return (1-100, default 10).
Number of results to skip (default 0)
Code example
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders?sortBy=volume&sortOrder=desc&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
https://api.signal8.ai/api/v1/public/senate-insiders?sortBy=volume&sortOrder=desc&limit=10&offset=0{
"data": {
"members": [
{
"cik": "sen-43291",
"name": "Abigail Spanberger",
"urlSlug": "abigail-spanberger",
"totalTransactions": 2,
"totalCompanies": 0,
"roles": [
"Representative"
],
"lastTransactionDate": "2024-06-03T22:00:00.000Z",
"netBuySell": "Neutral",
"party": "D",
"state": "VA",
"chamber": "House",
"isActive": true,
"source": "congressional"
},
{
"cik": "sen-717",
"name": "Adam Schiff",
"urlSlug": "adam-b-schiff",
"totalTransactions": 1,
"totalCompanies": 0,
"roles": [
"Senator"
],
"lastTransactionDate": "2025-09-21T22:00:00.000Z",
"netBuySell": "Sell",
"party": "D",
"state": "CA",
"chamber": "Senate",
"isActive": true,
"source": "congressional"
}
],
"total": 283,
"limit": 10,
"offset": 0
}
}