stock_trades
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where ticker = "LIN" and transaction_type = "Sale (Partial)" sorted by transaction_date descending
This data as json, CSV (advanced)
Suggested facets: member_name, bioguide_id, transaction_date, asset_description, asset_type, amount_range, owner, state_district, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 58990 | Dan Newhouse | N000189 | House | 2025-04-11 | 2025-05-16 | LIN | 1707925 | Linde plc - Ordinary Shares (LIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Spouse | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2025/20030292.pdf | P | WA04 | 20030292 | |
| 50665 | Josh Gottheimer | G000583 | House | 2024-06-21 | 2024-07-09 | LIN | 1707925 | Linde plc - Ordinary Shares (LIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Joint | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2024/20025419.pdf | P | NJ05 | 20025419 | |
| 46783 | Daniel Goldman | G000599 | House | 2023-01-31 | 2023-02-24 | LIN | 1707925 | Linde plc Ordinary Share (LIN) [ST] | ST | Sale (Partial) | $15,001 - $50,000 | Self | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2023/20022407.pdf | P | NY10 | 20022407 | |
| 51733 | Greg Landsman | L000601 | House | 2023-01-18 | 2024-08-14 | LIN | 1707925 | Linde plc - Ordinary Shares (LIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Joint | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2024/20025622.pdf | P | OH01 | 20025622 | |
| 3472 | Shelley M Capito | C001047 | Senate | 2022-10-17 | LIN | 1707925 | Linde plc Ordinary Share | Stock | Sale (Partial) | $1,001 - $15,000 | Spouse | https://efdsearch.senate.gov/search/view/ptr/3e37ef80-caff-4b2a-a6dd-ba4f557fd3f4/ | P | ||||
| 3482 | Shelley M Capito | C001047 | Senate | 2022-10-17 | LIN | 1707925 | Linde plc Ordinary Share | Stock | Sale (Partial) | $1,001 - $15,000 | Spouse | https://efdsearch.senate.gov/search/view/ptr/dc79907d-3b7a-4a2e-9a3d-e8f1625c70f6/ | P | ||||
| 40401 | Peter Meijer | M001186 | House | 2021-02-09 | 2021-02-23 | LIN | 1707925 | linde plc Ordinary Share (lIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Self | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2021/20018188.pdf | P | MI03 | 20018188 | |
| 38002 | Josh Gottheimer | G000583 | House | 2021-02-03 | 2021-03-10 | LIN | 1707925 | Linde plc Ordinary Share (LIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Joint | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2021/20018333.pdf | P | NJ05 | 20018333 | |
| 32386 | Greg Gianforte | G000584 | House | 2020-04-14 | 2020-04-23 | LIN | 1707925 | Linde plc Ordinary Share (LIN) [ST] | ST | Sale (Partial) | $50,001 - $100,000 | Joint | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2020/20016459.pdf | P | MT00 | 20016459 | |
| 32848 | Josh Gottheimer | G000583 | House | 2020-04-13 | 2020-05-13 | LIN | 1707925 | Linde plc ordinary Share (LIN) [ST] | ST | Sale (Partial) | $1,001 - $15,000 | Joint | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2020/20016556.pdf | P | NJ05 | 20016556 | |
| 28527 | Dean Phillips | P000616 | House | 2019-06-20 | 2019-07-11 | LIN | 1707925 | linde plc ordinary share (lIN) [sT] | Sale (Partial) | $1,001 - $15,000 | Self | https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2019/20011980.pdf | P | MN03 | 20011980 |
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);