Skip to content

Function: getBillActions() ​

ts
function getBillActions(
   congress: number, 
   billType: string, 
   billNumber: number, 
   limit?: number): Promise<{
  actions: CongressAction[];
}>;

Defined in: congress/sdk.ts:538

Get the action history / timeline for a bill.

Parameters ​

ParameterTypeDefault value
congressnumberundefined
billTypestringundefined
billNumbernumberundefined
limitnumber100

Returns ​

Promise<{ actions: CongressAction[]; }>

Released under the MIT License.