# Push new SEC GTM signals to a webhook

**Use case:** 

POST every new funding & exec-change filing to your endpoint for CRM/automation. Company, amount, ticker, industry, filing URL.

## Input

```json
{
  "signalTypes": [
    "funding",
    "exec_change"
  ],
  "lookbackDays": 2,
  "includeAmendments": false,
  "excludeFunds": true,
  "minAmountSold": 0,
  "minAmountOffered": 0,
  "fetchAmounts": true,
  "maxRecords": 20,
  "monitorMode": true,
  "alertOnNewSignal": true,
  "webhookUrl": "https://example.com/hooks/sec",
  "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.