← Back to catalog
openstates.bill_detail
mock data$0.002 / callGet Bill Details
Get full details for a specific US state bill by jurisdiction, session, and bill identifier. Returns complete legislative history including all actions (committee referrals, readings, amendments, final votes), sponsor information, abstract/summary, and roll-call vote counts. Obtain jurisdiction and session from bills_search results. Example: jurisdiction="ca", session="20252026", bill_id="SB 700".
Input schema
bill_idrequired
stringBill identifier within the session (e.g. "SB 700", "HB 1234", "SR 5"). Obtain from bills_search results.
sessionrequired
stringLegislative session identifier the bill belongs to (e.g. "20252026", "2024"). Obtain from bills_search results.
jurisdictionrequired
stringState abbreviation where the bill was introduced (e.g. "ca" for California, "ny" for New York).
Call via REST
curl -X POST https://unifyapi.pro/api/call/openstates.bill_detail \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"bill_id":"<bill_id>","session":"<session>","jurisdiction":"<jurisdiction>"}'