v36

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2024-11-1856109168.6 KB

Get Trades by Congress Member

Returns the recent trade disclosures filed by congress member.

get/api/congress/congress-trader

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

namestring
Example:Nancy+Pelosi

The full name of a congress member. Cannot contain digits/numbers. Spaces need to be replaced with either '+' or '%20'. Defaults to Nancy Pelosi.

Response

A list of recent reports by the given congress member.

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"
    }
  ]
}