lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_year = 2026 and issue_code = "BAN" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3528180 | NATIONAL CANNABIS INDUSTRY ASSOCIATION d2f44dfa-5f8a-4a2f-8610-f7d2b3a44c89 | 1T | NATIONAL CANNABIS INDUSTRY ASSOCIATION | 400750245 | NATIONAL CANNABIS INDUSTRY ASSOCIATION | 2026 | first_quarter | BAN | Discussed the 118th Congress' SAFE and SAFER Banking Acts and bill reintroduction with House and Senate offices. | HOUSE OF REPRESENTATIVES,SENATE | 25000 | 0 | 1 | 2026-02-02T12:28:55-05:00 | |
| 3528194 | DIROMA ECK & CO. LLP 210fd513-8c86-4ff7-8370-8bcd4ef0c99e | 1T | DIROMA ECK & CO. LLP | 401105820 | UNISWAP LABS | 2026 | first_quarter | BAN | Decentralized finance; Anti-Money Laundering issues pertaining to decentralized finance | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 0 | 1 | 2026-02-05T09:36:06-05:00 | ||
| 3528233 | EXODUS MOVEMENT, INC. 305d21a5-4729-4fec-b45d-d7ae289df76b | 1T | EXODUS MOVEMENT, INC. | 401109215 | EXODUS MOVEMENT, INC. | 2026 | first_quarter | BAN | H.R.3633 - Clarity Act/Responsible Financial Innovation Act - Issues pertaining to self-custodial wallets, noncustodial entities, and decentralized finance developers. S. 2284 - Keep Your Coins Act General issues related to digital assets, noncustodial digital asset services providers, and self-custodial wallets. | Securities & Exchange Commission (SEC),SENATE | 40000 | 0 | 1 | 2026-02-18T09:15:26-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);