# Monitor new SEC Form D filings daily

**Use case:** 

Daily watcher that outputs only NEW Form D funding filings since the last run. Company, amount, industry, state. Pair with a Schedule.

## Input

```json
{
  "signalTypes": [
    "funding"
  ],
  "lookbackDays": 2,
  "includeAmendments": false,
  "excludeFunds": true,
  "minAmountSold": 0,
  "minAmountOffered": 0,
  "fetchAmounts": true,
  "maxRecords": 25,
  "monitorMode": true,
  "alertOnNewSignal": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "diagnose": false
}
```

## Output

```json
{
  "filing_date": {
    "label": "Filed",
    "format": "string"
  },
  "signal_type": {
    "label": "Signal",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "amount_sold": {
    "label": "Raised",
    "format": "number"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "filing_url": {
    "label": "Filing",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC EDGAR Funding & Exec-Change Monitor — Form D, 8-K](https://apify.com/scrapersdelight/sec-edgar-gtm-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/sec-edgar-gtm-monitor) to learn more, explore other use cases, and run it yourself.