Skip to content

House Trades API

Retrieve trading activity from US House Representatives disclosed under the STOCK Act. Track congressional purchases and sales for any ticker.

GET /v1/housetrades/{market}/{ticker}

Requires API key via token query parameter.

ParameterTypeRequiredDescription
marketstringYesMarket identifier (e.g., S&P 500, NASDAQ)
tickerstringYesStock ticker symbol (e.g., AAPL, NVDA)
ParameterTypeRequiredDescription
tokenstringYesYour API key
dateFromstringNoStart date (YYYY-MM-DD)
dateTostringNoEnd date (YYYY-MM-DD)
Terminal window
curl "https://api.finbrain.tech/v1/housetrades/S%26P%20500/NVDA?token=YOUR_API_KEY"
{
"ticker": "AMZN",
"name": "Amazon.com Inc.",
"houseTrades": [
{
"date": "2024-02-29",
"amount": "$360.00",
"representative": "Pete Sessions",
"type": "Purchase"
},
{
"date": "2024-01-25",
"amount": "$15,001 - $50,000",
"representative": "Shri Thanedar",
"type": "Sale"
}
]
}
FieldTypeDescription
tickerstringStock ticker symbol
namestringCompany name
houseTradesarrayArray of trade objects
FieldTypeDescription
datestringTransaction date (YYYY-MM-DD)
amountstringTransaction amount (exact value or range)
representativestringName of representative
typestringTransaction type (Purchase or Sale)
RangeMinMax
$1,001 - $15,000$1,001$15,000
$15,001 - $50,000$15,001$50,000
$50,001 - $100,000$50,001$100,000
$100,001 - $250,000$100,001$250,000
$250,001 - $500,000$250,001$500,000
$500,001 - $1,000,000$500,001$1,000,000
$1,000,001 - $5,000,000$1,000,001$5,000,000
Over $5,000,000$5,000,001N/A
CodeErrorDescription
400Bad RequestInvalid market or ticker
401UnauthorizedInvalid or missing API key
404Not FoundTicker not found
500Internal Server ErrorServer-side error