# Scrape California U.S. House stock trades

**Use case:** 

Search 2025 House Periodic Transaction Reports for California members and return structured purchases, sales, and exchanges.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2025/20031001.pdf"
    }
  ],
  "filingYears": [
    2025
  ],
  "states": [
    "CA"
  ],
  "districts": [],
  "lastNames": [
    "Chu"
  ],
  "memberNames": [],
  "tickers": [
    "ASTH"
  ],
  "transactionTypes": [],
  "maxFilings": 25,
  "maxItems": 100
}
```

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