Get politician committee assignments
GET
/api/v1/public/senate-insiders/:slug/committees3 credits / callAPI key required
Committee assignments for a politician, including committee name, chamber, role (Chair, Ranking Member, etc.), and subcommittee memberships. Useful for relating trading activity to a member's oversight areas. Executive-branch slugs return an empty list (they have no committees).
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//committees' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders//committeesexample · 200
{
"data": {
"memberSlug": "ro-khanna",
"memberName": "Ro Khanna",
"bioguideId": "K000389",
"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 Oversight and Government Reform",
"committeeCode": "HSGO",
"chamber": "house",
"isSubcommittee": false,
"parentCommitteeCode": null,
"parentCommitteeName": null,
"role": null,
"rank": 5
},
{
"committeeName": "House Committee on Armed Services",
"committeeCode": "HSAS",
"chamber": "house",
"isSubcommittee": false,
"parentCommitteeCode": null,
"parentCommitteeName": null,
"role": null,
"rank": 7
}
]
}
}