← Finance & Currency

Senate Stock Trades

GET /congress/senate

Access recent US Senate stock trading disclosures as required by the STOCK Act. Returns senator names, stock tickers, transaction types (purchase/sale), and reported dollar ranges. Filter by specific stock ticker or senator name. Useful for tracking congressional trading activity, building political finance transparency tools, and analyzing whether senators trade ahead of legislation. Data from official Senate financial disclosures.

Parameters

ticker optional

Filter by stock ticker

name optional

Filter by senator name

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/congress/senate
All recent Senate trades
curl https://nordapi.ee/api/v1/congress/senate
Senate trades for Apple stock
curl "https://nordapi.ee/api/v1/congress/senate?ticker=AAPL"
Senate trades by a specific senator
curl "https://nordapi.ee/api/v1/congress/senate?name=Pelosi"

Live Response

HTTP 502: {
  "error": "API returned 403",
  "success": false
}

Example Response

{"success":true,"source":"senate","data":[{"name":"Sen. Smith","ticker":"AAPL","amount":"$1,001 - $15,000"}]}