API Documentation

GET/api/1/alternative/congress-trading

Congress Trading API

Returns recent stock trades disclosed by members of US Congress

Parameters

2
symbolstring
query

Filter by stock symbol

limitnumber
query

Number of results (default 100, max 500)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/alternative/congress-trading?symbol=AAPL&limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "politician": "Nancy Pelosi",
  "symbol": "NVDA",
  "transaction_type": "Purchase",
  "amount_from": 100001,
  "amount_to": 250000,
  "transaction_date": "2024-01-15T00:00:00.000Z",
  "filing_date": "2024-02-01T00:00:00.000Z",
  "chamber": "House"
}
]