lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where filing_year = 2026 and issue_code = "ENG" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: filing_type, registrant_name, registrant_id, government_entities, is_termination, received_date (date)
| id | filing_uuid | filing_type | registrant_name | registrant_id | client_name | filing_year ▲ | filing_period | issue_code | specific_issues | government_entities | income_amount | expense_amount | is_no_activity | is_termination | received_date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3528122 | SARAH BLACKWOOD GOVERNMENT RELATIONS, LLC 63946912-6e70-4eb9-bd10-3f94bc1cb0dd | 1T | SARAH BLACKWOOD GOVERNMENT RELATIONS, LLC | 401103935 | MOMENTUM TECHNOLOGIES | 2026 | first_quarter | ENG | funding opportunities at the DoD and DOE for recycling and processing critical minerals and rare earth elements | Defense, Dept of (DOD),Energy, Dept of,HOUSE OF REPRESENTATIVES,SENATE | 0 | 1 | 2026-01-06T16:03:02-05:00 | ||
| 3528152 | THORN RUN PARTNERS fc704fb4-97ee-4e23-8e91-5dd07bdf529a | 1T | THORN RUN PARTNERS | 400534596 | PENINSULA CLEAN ENERGY AUTHORITY | 2026 | first_quarter | ENG | Federal funding for energy projects and programs. | HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 1 | 2026-01-18T21:28:29-05:00 | |
| 3528166 | ETHAN DURSTELER 5d6fdb95-82d5-43e0-aef7-6d54956868c6 | Q1 | ETHAN DURSTELER | 401110044 | DELFIN LNG | 2026 | first_quarter | ENG | Sharing Delfin's permitting experience and working on related permitting issues. | HOUSE OF REPRESENTATIVES,SENATE | 18750 | 0 | 0 | 2026-01-22T11:45:22-05:00 | |
| 3528168 | ETHAN DURSTELER 970b92b7-8fef-42bc-9c33-b92466e75fed | Q1 | ETHAN DURSTELER | 401110044 | DIRECT KINETIC SOLUTIONS | 2026 | first_quarter | ENG | federal uses for DKS innovative nuclear isotope technology | HOUSE OF REPRESENTATIVES,SENATE | 7500 | 0 | 0 | 2026-01-22T11:53:46-05:00 | |
| 3528238 | STROGEN LLC 6f9fcfc4-c472-4248-bfde-4563ab3fbb8f | Q1 | STROGEN LLC | 401107789 | OMC THERMOCHEMISTRY FKA OMC HYDROGEN | 2026 | first_quarter | ENG | Engaged with DoD and DOE energy and technical leadership, as well as congressional energy staff, to advance understanding of OMCs thermochemical hydrogen and syngas production technology for military and industrial applications. | Defense, Dept of (DOD),Defense Logistics Agency,Energy, Dept of,HOUSE OF REPRESENTATIVES,SENATE | 0 | 0 | 2026-02-25T14:06:48-05:00 | ||
| 3528259 | SC PARTNERS LLC 04ae75c3-85a9-4ddb-b029-161fd11a6221 | 1T | SC PARTNERS LLC | 318994 | LEEWARD RENEWABLE ENERGY | 2026 | first_quarter | ENG | Discussion of improving energy permitting reform for solar, wind, electric transmission and energy storage projects. Standardizing Permitting and Expediting Economic Development Act or the SPEED Act (H.R. 4776): Issues related to permitting for solar, wind, energy storage, transmission, and supporting infrastructure. | HOUSE OF REPRESENTATIVES,SENATE | 30000 | 0 | 1 | 2026-03-04T09:27:22-05:00 | |
| 3528261 | SC PARTNERS LLC aa2a48ef-45d9-4412-841d-80f069debf9c | 1T | SC PARTNERS LLC | 318994 | NATURGY CANDELA DEVCO LLC | 2026 | first_quarter | ENG | Energy Permitting Reform: Improving permitting for solar, electric transmission, and energy storage facilities. Standardizing Permitting and Expediting Economic Development Act or the SPEED Act (H.R. 4776): Issues related to permitting for solar, wind, energy storage, transmission, and supporting infrastructure. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 1 | 2026-03-04T09:28:34-05:00 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE lobbying_activities (
id INTEGER PRIMARY KEY,
filing_uuid TEXT NOT NULL,
filing_type TEXT NOT NULL,
registrant_name TEXT NOT NULL,
registrant_id INTEGER,
client_name TEXT NOT NULL,
filing_year INTEGER NOT NULL,
filing_period TEXT NOT NULL,
issue_code TEXT,
specific_issues TEXT,
government_entities TEXT,
income_amount INTEGER,
expense_amount INTEGER,
is_no_activity INTEGER DEFAULT 0,
is_termination INTEGER DEFAULT 0,
received_date TEXT,
CONSTRAINT fk_activity_filing FOREIGN KEY (filing_uuid)
REFERENCES lobbying_filings_raw(filing_uuid)
);
CREATE INDEX idx_act_client_name ON lobbying_activities(client_name COLLATE NOCASE);
CREATE INDEX idx_act_issue_code ON lobbying_activities(issue_code);
CREATE INDEX idx_act_filing_year ON lobbying_activities(filing_year);
CREATE INDEX idx_act_filing_uuid ON lobbying_activities(filing_uuid);