Tools/Congress (STOCK Act)

congress.disclosures.list

freeread-only

List 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#

ParameterTypeDescription
yearreqnumberFiling year, e.g. 2024
filingTypeoptstringP=Periodic Transaction Report, O=Annual, A=Amendment, C=Candidate (optional)
nameoptstringFilter by representative name (optional)
limitoptnumberMax 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.