# Monitor House member stock purchases by ticker

**Use case:** 

Filter House PTR transactions by member, ticker, action, and transaction date for repeat compliance or market-signal workflows.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2025/20031001.pdf"
    }
  ],
  "filingYears": [
    2025
  ],
  "states": [
    "CA"
  ],
  "districts": [],
  "lastNames": [
    "Chu"
  ],
  "memberNames": [
    "Judy Chu"
  ],
  "tickers": [
    "ASTH"
  ],
  "transactionTypes": [
    "purchase"
  ],
  "transactionDateFrom": "2025-08-01",
  "transactionDateTo": "2025-08-31",
  "maxFilings": 10,
  "maxItems": 20
}
```

## Output

```json
{
  "filerName": {
    "label": "Filer",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "asset": {
    "label": "Asset",
    "format": "string"
  },
  "transactionType": {
    "label": "Action",
    "format": "string"
  },
  "transactionDate": {
    "label": "Transaction date",
    "format": "string"
  },
  "amountRange": {
    "label": "Amount",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "district": {
    "label": "District",
    "format": "string"
  },
  "pdfUrl": {
    "label": "PTR PDF",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [House Stock Trades Scraper](https://apify.com/automation-lab/house-stock-trades-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/house-stock-trades-scraper) to learn more, explore other use cases, and run it yourself.