congress.disclosures.list
freeread-onlyList the US House financial-disclosure filing INDEX for a year (STOCK Act). filingType 'P' = Periodic Transaction Report (stock trades). Returns one row per filing with a link to the source PDF — this is the index, NOT parsed trades. Parsed line-items (member, ticker, buy/sell, amount range) are available via congress.trades (US House live; Senate being added). Public-domain US House Clerk data.
Parameters#
| Parameter | Type | Description |
|---|---|---|
yearreq | number | Filing year, e.g. 2024 |
filingTypeopt | string | P=Periodic Transaction Report, O=Annual, A=Amendment, C=Candidate (optional) |
nameopt | string | Filter by representative name (optional) |
limitopt | number | Max filings (default 50, max 200) |
Example call#
bash
curl -X POST https://arkolith.com/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "congress.disclosures.list",
"arguments": {
"year": 2024,
"filingType": "P"
}
}
}'Example response#
Shape varies
Output depends on your arguments and live data. Make the call above to see the exact response. Every result includes a
provenance block where the source carries one.Free tool
This call costs 0 credits. Use it freely.