Get politician detail
GET
/api/v1/public/senate-insiders/:slug3 credits / callAPI key required
Get the full profile for a politician: party, state, chamber, trade statistics, filing-delay metrics, most-traded sector, a monthly buy/sell breakdown, top traded tickers, and the most recent transactions. Use the list endpoint first to find the slug.
Parameters
Path
Politician slug, e.g. ro-khanna (from /senate-insiders).
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders/' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders/example · 200
{
"data": {
"profile": {
"slug": "ro-khanna",
"firstName": "Ro",
"lastName": "Khanna",
"displayName": "Ro Khanna",
"party": "D",
"state": "CA",
"chamber": "House",
"isActive": true,
"totalTrades": 5127,
"estimatedVolume": 90961000,
"mostTradedSector": "Healthcare",
"avgFilingDelay": 24,
"lateFilingsCount": 7,
"monthlyBreakdown": [
{
"month": "2026-04",
"buys": 91,
"sells": 4
},
{
"month": "2026-05",
"buys": 77,
"sells": 11
}
],
"topTradedTickers": [
{
"ticker": "HRL",
"name": "Hormel Foods Corporation",
"isEtf": false,
"exchange": "NYSE",
"count": 9,
"buyCount": 4,
"sellCount": 5,
"buyValue": 32000,
"sellValue": 40000,
"estTotalValue": 72000,
"price": 24.56,
"changePercent": -0.0814,
"sector": "Consumer Defensive",
"marketCap": 13526741692.22
},
{
"ticker": "PGR",
"name": "The Progressive Corporation",
"isEtf": false,
"exchange": "NYSE",
"count": 9,
"buyCount": 5,
"sellCount": 4,
"buyValue": 64500,
"sellValue": 56500,
"estTotalValue": 121000,
"price": 202.68,
"changePercent": -0.4029,
"sector": "Financial Services",
"marketCap": 118684688070
}
]
},
"recentTransactions": [
{
"ticker": "MSFT",
"assetDescription": "Microsoft Corp",
"type": "Sale",
"transactionDate": "2026-05-01T22:00:00.000Z",
"disclosureDate": "2026-05-20T22:00:00.000Z",
"filingDelay": 19,
"isLateFiling": false,
"amountRange": "$1,001 - $15,000",
"amountMidpoint": 8000,
"owner": "Self",
"filingUrl": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034591.pdf",
"companyName": "Microsoft Corp",
"priceAtTrade": 425.6
}
]
}
}