Get recent reported trades
Returns the latest reported trades by congress members. If a date is given, will only return reports with a transaction date ≤ the given input date.
get/api/congress/recent-reports
Query parameters
datestring date
Example:2024-01-18T00:00:00.000Z
A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.
limitinteger
Example:10
How many items to return. Default: 100. Max: 200. Min: 1.
Response
A list of recent reported trades
Example response
{
"data": [
{
"amounts": "$1,000 - $15,000",
"filed_at_date": "2023-12-13",
"issuer": "spouse",
"member_type": "house",
"notes": "Subholding Of: Stephens Advantage Account Description: FT UNIT 10479 PFD mutual-fund 32500",
"reporter": "Stephen Cohen",
"ticker": "AAPL",
"transaction_date": "2023-12-06",
"txn_type": "Sell"
}
]
}