stock_trades
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where ticker = "DD" and transaction_type = "Exchange" sorted by transaction_date descending
This data as json, CSV (advanced)
Suggested facets: member_name, bioguide_id, transaction_date, disclosure_date, asset_description, owner, source_url, state_district, doc_id, transaction_date (date), disclosure_date (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 45249 | Mary Gay Scanlon | S001205 | House | 2021-02-01 | 2022-08-12 | DD | 1666700 | DuPont de Nemours, Inc. (DD) [ST] | ST | Exchange | $1,001 - $15,000 | Spouse | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2022/20009266.pdf | P | PA05 | 20009266 | |
| 25336 | Debbie Dingell | D000624 | House | 2019-06-03 | 2019-06-14 | DD | 1666700 | DuPont de Nemours, Inc. (DD) [ST] DowDupont (DWDP) stock was transferred from Morgan Stanley Smith Barney LLC Brokerage account - Joint. | ST | Exchange | $1,001 - $15,000 | Self | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2019/20011830.pdf | P | MI12 | 20011830 | |
| 36626 | Cindy Axne | A000378 | House | 2019-06-03 | 2021-10-08 | DD | 1666700 | duPont de Nemours, Inc. (dd) [ST] merger. | ST | Exchange | $1,001 - $15,000 | Self | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2021/20019530.pdf | P | IA03 | 20019530 | |
| 36627 | Cindy Axne | A000378 | House | 2019-06-03 | 2021-10-08 | DD | 1666700 | duPont de Nemours, Inc. (dd) [ST] merger. | ST | Exchange | $1,001 - $15,000 | Spouse | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2021/20019530.pdf | P | IA03 | 20019530 | |
| 36628 | Cindy Axne | A000378 | House | 2019-06-03 | 2021-10-08 | DD | 1666700 | duPont de Nemours, Inc. (dd) [ST] merger. | ST | Exchange | $1,001 - $15,000 | Spouse | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2021/20019530.pdf | P | IA03 | 20019530 |
Advanced export
JSON shape: default, array, newline-delimited, object
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);