house_trades_by_ticker
Retrieve disclosed US House stock trades for any ticker, including transaction dates, representatives, trade types, and amounts. Ideal for tracking congressional trading activity.
Instructions
Normalized US House trades:
{
format: "json",
ticker, name,
series: [{date, representative, trade_type,
amount_min, amount_max, amount_exact, amount_raw,
disclosure_date, owner, amount_as_filed, amount_flag}, ...],
series_count, series_total
}
date is the transaction date; disclosure_date is when the trade was
publicly disclosed in the member's periodic transaction report. The gap
between them is the reporting lag.
owner is the beneficial owner of the traded account: "SELF", "SP"
(spouse), "DC" (dependent child), "JT" (joint), or an account code;
blank House filings report as "SELF". owner and disclosure_date are
nullable, though rare — historical rows were backfilled upstream.
amount_raw is the amount string as served by the API, normalized to a
statutory STOCK Act bracket when the filed string is an unambiguous
variant of one; amount_as_filed then preserves the original filing.
amount_flag is "review" or "ambiguous" when the filed amount could not
be safely normalized (amount_raw keeps the filed string, or "Unknown");
both are null on all other rows.
CSV returns the sliced series.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| req | Yes |