roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where chamber = "senate", congress = 119 and result = "Cloture on the Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, yea_count, present_count, not_voting_count, date (date)
result 1
- Cloture on the Motion to Proceed Agreed to · 8 ✖
congress 1
- 119 · 8 ✖
chamber 1
- senate · 8 ✖
| Link | congress | chamber | session | roll_call_number | date ▲ | question | vote_type | description | result | bill_id | legislation_type | legislation_number | yea_count | nay_count | present_count | not_voting_count | source_url |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 119,senate,2,44 | 119 | senate | 2 | 44 | 2026-03-02 | On Cloture on the Motion to Proceed H.R. 6644 | Motion to Invoke Cloture: Motion to Proceed to H.R. 6644 -- A bill a bill to increase the supply of housing in America, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-hr-6644 | H.R | 6644 | 84 | 6 | 1 | 9 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1192/vote_119_2_00044.xml | |
| 119,senate,2,7 | 119 | senate | 2 | 7 | 2026-01-12 | On Cloture on the Motion to Proceed H.R. 6938 | Motion to Invoke Cloture: Motion to Proceed to H.R. 6938 -- A bill making consolidated appropriations for the fiscal year ending September 30, 2026, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-hr-6938 | H.R | 6938 | 80 | 13 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1192/vote_119_2_00007.xml | |
| 119,senate,1,610 | 119 | senate | 1 | 610 | 2025-11-09 | On Cloture on the Motion to Proceed H.R. 5371 | Upon Reconsideration, Motion to Invoke Cloture on the Motion to Proceed to H.R. 5371 -- A bill making continuing appropriations and extensions for fiscal year 2026, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-hr-5371 | H.R | 5371 | 60 | 40 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00610.xml | |
| 119,senate,1,500 | 119 | senate | 1 | 500 | 2025-09-02 | On Cloture on the Motion to Proceed S. 2296 | Motion to Invoke Cloture: Motion to Proceed to S. 2296 -- An original bill to authorize appropriations for fiscal year 2026 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-s-2296 | S | 2296 | 84 | 14 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00500.xml | |
| 119,senate,1,423 | 119 | senate | 1 | 423 | 2025-07-22 | On Cloture on the Motion to Proceed H.R. 3944 | Motion to Invoke Cloture: Motion to Proceed to H.R. 3944 -- A bill making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2026, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-hr-3944 | H.R | 3944 | 91 | 7 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00423.xml | |
| 119,senate,1,262 | 119 | senate | 1 | 262 | 2025-05-19 | On Cloture on the Motion to Proceed S. 1582 | Motion to Invoke Cloture on the Motion to Proceed to S. 1582 -- A bill to provide for the regulation of payment stablecoins, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-s-1582 | S | 1582 | 66 | 32 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00262.xml | |
| 119,senate,1,110 | 119 | senate | 1 | 110 | 2025-03-06 | On Cloture on the Motion to Proceed S. 331 | Motion to Invoke Cloture: Motion to Proceed to S. 331 -- A bill to amend the Controlled Substances Act with respect to the scheduling of fentanyl-related substances, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-s-331 | S | 331 | 82 | 12 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00110.xml | |
| 119,senate,1,1 | 119 | senate | 1 | 1 | 2025-01-09 | On Cloture on the Motion to Proceed S. 5 | Motion to Invoke Cloture: Motion to Proceed to S. 5 -- A bill to require the Secretary of Homeland Security to take into custody aliens who have been charged in the United States with theft, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 119-s-5 | S | 5 | 84 | 9 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00001.xml |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE roll_call_votes (
congress INTEGER NOT NULL,
chamber TEXT NOT NULL,
session INTEGER,
roll_call_number INTEGER NOT NULL,
date TEXT,
question TEXT,
vote_type TEXT,
description TEXT,
result TEXT,
bill_id TEXT,
legislation_type TEXT,
legislation_number TEXT,
yea_count INTEGER,
nay_count INTEGER,
present_count INTEGER,
not_voting_count INTEGER,
source_url TEXT,
PRIMARY KEY (congress, chamber, session, roll_call_number)
);
CREATE INDEX idx_rcv_date ON roll_call_votes(date);
CREATE INDEX idx_rcv_bill ON roll_call_votes(bill_id);
CREATE INDEX idx_rcv_congress ON roll_call_votes(congress);
CREATE INDEX idx_rcv_result ON roll_call_votes(result);
CREATE INDEX idx_rcv_compound ON roll_call_votes(congress, chamber, session, roll_call_number);