Docs / Government data
GET /v1/congress
Congressional stock trades, parsed from US House STOCK Act periodic transaction reports.
Each record carries the member, state and district, ticker, buy or sell, the disclosed dollar range, the
transaction and disclosure dates, and a link to the House disclosure PDF. Use /v1/congress for
the recent feed or /v1/congress/{ticker} for one stock.
House-only for now. The Senate feed is coming. Amounts are dollar
ranges, not exact figures, and under the STOCK Act a trade can be disclosed up to 45 days
after it happens — so read this for pattern, not timing. Not investment advice.
Parameters
| Param | In | Values |
|---|---|---|
ticker | path (optional route) | Stock ticker for one-stock history, e.g. NVDA. Omit for the recent feed. |
action | query | Filter the feed to buy or sell |
limit | query | 1–100 (default 40) |
Request
# recent congressional buys
curl "https://api.edgrapi.com/v1/congress?action=buy&limit=20" -H "X-API-Key: edgr_..."
# every disclosed trade in one stock
curl "https://api.edgrapi.com/v1/congress/NVDA" -H "X-API-Key: edgr_..."
Response
{
"scope": "recent congressional stock trades (US House)", "count": 1,
"trades": [
{ "member": "Hon. Gilbert Cisneros", "chamber": "house", "state_district": "CA31",
"ticker": "PWR", "action": "buy", "amount_low": 15001, "amount_high": 50000,
"transaction_date": "2026-08-27", "disclosed_date": "2026-09-10",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20026543.pdf" }
],
"source": "US House STOCK Act periodic transaction reports (disclosures-clerk.house.gov)"
}