# Congress Stock Trade Alerts: New Disclosures Since Last Run

**Use case:** 

Congress stock trade alerts as a scheduled feed. Turn on monitor mode and each run returns only the trades disclosed since your previous run, so you can send new congressional buys and sells to a spreadsheet, Slack, or trading dashboard without duplicates. Add party, chamber, or state filters to alert on just the members you follow.

## Input

```json
{
  "politicians": [],
  "party": "",
  "chamber": "",
  "state": "",
  "txType": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "monitorMode": true,
  "maxItems": 10
}
```

## Output

```json
{
  "politicianFullName": {
    "label": "Politician",
    "format": "text"
  },
  "party": {
    "label": "Party",
    "format": "text"
  },
  "chamber": {
    "label": "Chamber",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "issuerName": {
    "label": "Company",
    "format": "text"
  },
  "issuerTicker": {
    "label": "Ticker",
    "format": "text"
  },
  "txType": {
    "label": "Type",
    "format": "text"
  },
  "valueEstimate": {
    "label": "Est. value",
    "format": "number"
  },
  "txDate": {
    "label": "Traded",
    "format": "date"
  },
  "pubDate": {
    "label": "Disclosed",
    "format": "date"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Capitol Trades Scraper: Congress Stock Trades & Monitor Mode](https://apify.com/getascraper/capitol-trades-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/capitol-trades-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

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

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
