Get politician committee leadership roles
GET
/api/v1/public/senate-insiders/:slug/roles3 credits / callAPI key required
Committee leadership roles (Chair, Ranking Member, etc.) for a politician, plus the sectors their committees legislate and a neutral breakdown of any disclosed trades that overlap those sectors. Useful for understanding a member's areas of oversight. Executive-branch slugs have no committee roles.
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//roles' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders//rolesexample · 200
{
"data": {
"memberSlug": "ro-khanna",
"memberName": "Ro Khanna",
"bioguideId": "K000389",
"title": "Ranking Member",
"committees": [
{
"committeeName": "House Select Committee on the Strategic Competition Between the United States and the Chinese Communist Party",
"committeeCode": "HSZS",
"chamber": "house",
"isSubcommittee": false,
"parentCommitteeCode": null,
"parentCommitteeName": null,
"role": "Ranking Member",
"rank": 1
},
{
"committeeName": "House Committee on Armed Services",
"committeeCode": "HSAS",
"chamber": "house",
"isSubcommittee": false,
"parentCommitteeCode": null,
"parentCommitteeName": null,
"role": null,
"rank": 7
}
],
"legislatedSectors": [
"Industrials"
],
"conflictSectors": [
"Industrials"
],
"conflictTickers": [
{
"sector": "Industrials",
"totalEstimatedUsd": 5429500,
"truncated": true,
"tickers": [
{
"symbol": "CAT",
"estimatedUsd": 322500,
"tradeCount": 25,
"lastTradeDate": "2025-10-27",
"lastDirection": "Sale"
},
{
"symbol": "UPS",
"estimatedUsd": 260500,
"tradeCount": 15,
"lastTradeDate": "2026-05-01",
"lastDirection": "Purchase"
},
{
"symbol": "UNP",
"estimatedUsd": 226500,
"tradeCount": 13,
"lastTradeDate": "2026-05-01",
"lastDirection": "Purchase"
}
]
}
],
"holdingConflicts": []
}
}