home / openregs

stock_trades

Congressional stock trading disclosures from 100% government sources. Senate: efdsearch.senate.gov (15,000+ transactions, 2012-present). House: disclosures-clerk.house.gov PTR PDFs parsed for transaction-level data (tickers, amounts, buy/sell). 60,000+ total transactions. Both chambers linked to congress_members via bioguide_id. Dates are as filed. A small number of older House PTR rows (scanned-PDF era, ~2014–2016) carry logically inconsistent dates — e.g., a disclosure date earlier than the transaction date — likely from filer error or scan-text artifacts; these are preserved as filed pending review. Transaction dates that are impossibly far in the future are blanked rather than guessed. Rows that parse with neither an amount nor a transaction type are excluded as PDF-parse artifacts (wrapped description fragments, not trades).

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

1 row where ticker = "T" and transaction_type = "Exchange" sorted by transaction_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: transaction_date (date), disclosure_date (date)

transaction_type 1

  • Exchange · 1 ✖

ticker 1

  • T · 1 ✖

chamber 1

  • House 1
id member_name bioguide_id chamber transaction_date ▲ disclosure_date ticker cik asset_description asset_type transaction_type amount_range owner comment source_url filing_type state_district doc_id
44149 David Kustoff K000392 House 2022-04-11 2022-05-02 T 732717 AT&T Inc. (T) [ST] ST Exchange $4,450 Joint   https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2022/20020875.pdf P TN08 20020875

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE stock_trades (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    member_name TEXT,
    bioguide_id TEXT,
    chamber TEXT,
    transaction_date TEXT,
    disclosure_date TEXT,
    ticker TEXT,
    cik INTEGER,              -- SEC EDGAR CIK, populated from ticker_sic+sec_companies
    asset_description TEXT,
    asset_type TEXT,
    transaction_type TEXT,
    amount_range TEXT,
    owner TEXT,
    comment TEXT,
    source_url TEXT,
    filing_type TEXT,
    state_district TEXT,
    doc_id TEXT
);
CREATE INDEX idx_st_bioguide ON stock_trades(bioguide_id);
CREATE INDEX idx_st_ticker ON stock_trades(ticker);
CREATE INDEX idx_st_cik ON stock_trades(cik) WHERE cik IS NOT NULL;
CREATE INDEX idx_st_date ON stock_trades(transaction_date);
CREATE INDEX idx_st_member ON stock_trades(member_name);
CREATE INDEX idx_st_type ON stock_trades(transaction_type);
CREATE INDEX idx_st_chamber ON stock_trades(chamber);
Powered by Datasette · Queries took 34.402ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API