# Watch a Ticker's 8-K Filings via MCP and AI Agents

**Use case:** 

Give an AI agent a live 8-K feed for any stock ticker. The managed monitor returns only new SEC filings on each call, as clean JSON. Pay per filing.

## Input

```json
{
  "tickers": [
    "AAPL"
  ],
  "forms": [
    "8-K"
  ],
  "monitorName": "aapl-8k-watch",
  "maxRecords": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "filingDate": {
    "label": "Filed",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "form": {
    "label": "Form",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "accessionNumber": {
    "label": "Accession number",
    "format": "string"
  },
  "filingUrl": {
    "label": "Filing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC Filing Monitor API](https://apify.com/virtual-constructs/sec-filing-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/virtual-constructs/sec-filing-monitor) to learn more, explore other use cases, and run it yourself.