Recent congressional roll-call votes
GET
/api/v1/public/senate-insiders/discovery/recent-votes3 credits / callAPI key required
Returns recent congressional roll-call votes across all members, sourced from Congress.gov, newest first. Each row records the member, chamber, roll-call number, congress and session, the associated bill (if any), vote date, the member's position, the question, and the result. Filter by chamber, party, or position.
Parameters
Query
Restrict to one chamber.
Restrict to one party.
Restrict to one vote position.
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/senate-insiders/discovery/recent-votes?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/discovery/recent-votes?limit=10&offset=0example · 200
{
"success": true,
"data": {
"votes": [
{
"memberSlug": "susan-m-collins",
"memberName": "Susan Collins",
"party": "R",
"chamber": "Senate",
"state": "ME",
"rollCallNumber": 172,
"congress": 119,
"session": 2,
"billNumber": null,
"billTitle": null,
"voteDate": "2026-06-14T22:00:00.000Z",
"position": "Yea",
"result": "Nomination Confirmed",
"voteQuestion": "On the Nomination PN851-7: Justin D. Smith, of Missouri, to be United States Circuit Judge for the Eighth Circuit"
},
{
"memberSlug": "maria-cantwell",
"memberName": "Maria Cantwell",
"party": "D",
"chamber": "Senate",
"state": "WA",
"rollCallNumber": 172,
"congress": 119,
"session": 2,
"billNumber": null,
"billTitle": null,
"voteDate": "2026-06-14T22:00:00.000Z",
"position": "Nay",
"result": "Nomination Confirmed",
"voteQuestion": "On the Nomination PN851-7: Justin D. Smith, of Missouri, to be United States Circuit Judge for the Eighth Circuit"
}
],
"total": 124191,
"pagination": {
"limit": 20,
"offset": 0,
"hasMore": true
}
}
}