# Stock purchases disclosed by US House members

**Use case:** 

Only the buys, filtered out of the House STOCK Act disclosures. Each row carries the ticker, the disclosed amount as a low and a high number rather than a text range, the trade date and the date it was reported, so the gap between the two is visible. Scanned paper filings are reported as scans, never as an absence of trades.

## Input

```json
{
  "year": 2026,
  "maxReports": 20,
  "maxRecords": 80,
  "filingTypes": [
    "P"
  ],
  "transactionTypes": [
    "purchase"
  ],
  "minAmountUsd": 0,
  "keywordMatch": "any",
  "monitoringMode": false,
  "resetMonitoringState": false,
  "maxRequests": 60
}
```

## Output

```json
{
  "memberName": {
    "label": "Member Name",
    "format": "string"
  },
  "stateDistrict": {
    "label": "State District",
    "format": "string"
  },
  "transactionDate": {
    "label": "Transaction Date",
    "format": "string"
  },
  "transactionType": {
    "label": "Transaction Type",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "assetName": {
    "label": "Asset Name",
    "format": "string"
  },
  "amountRange": {
    "label": "Amount Range",
    "format": "string"
  },
  "amountMinUsd": {
    "label": "Amount Min Usd",
    "format": "string"
  },
  "amountMaxUsd": {
    "label": "Amount Max Usd",
    "format": "string"
  },
  "filingDate": {
    "label": "Filing Date",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "searchUrl": {
    "label": "Search Url",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "chamber": {
    "label": "Chamber",
    "format": "string"
  },
  "tradeId": {
    "label": "Trade Id",
    "format": "string"
  },
  "memberStatus": {
    "label": "Member Status",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "assetId": {
    "label": "Asset Id",
    "format": "string"
  },
  "ownerCode": {
    "label": "Owner Code",
    "format": "string"
  },
  "ownerType": {
    "label": "Owner Type",
    "format": "string"
  },
  "assetTypeCode": {
    "label": "Asset Type Code",
    "format": "string"
  },
  "assetType": {
    "label": "Asset Type",
    "format": "string"
  },
  "transactionTypeCode": {
    "label": "Transaction Type Code",
    "format": "string"
  },
  "notificationDate": {
    "label": "Notification Date",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "filingStatus": {
    "label": "Filing Status",
    "format": "string"
  },
  "filingId": {
    "label": "Filing Id",
    "format": "string"
  },
  "filingYear": {
    "label": "Filing Year",
    "format": "string"
  },
  "documentUrl": {
    "label": "Document Url",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US Congress Stock Trades: House STOCK Act Financial Disclosures](https://apify.com/neverempty/us-congress-stock-trades.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/us-congress-stock-trades.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/us-congress-stock-trades.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
