# Scrape SEC Form D private funding filings

**Use case:** 

Export new Form D private raises from SEC EDGAR: company, amount sold/offered, industry, state, filing URL. CSV/JSON ready.

## Input

```json
{
  "signalTypes": [
    "funding"
  ],
  "lookbackDays": 7,
  "includeAmendments": false,
  "excludeFunds": true,
  "minAmountSold": 0,
  "minAmountOffered": 0,
  "fetchAmounts": true,
  "maxRecords": 20,
  "monitorMode": false,
  "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.