# Scrape SEC Insider Form 4 Trades

**Use case:** 

Scrape insider Form 4 filings from SEC EDGAR: filer, date and document links to track insider buys and sells, by ticker or CIK. No login. Export CSV.

## Input

```json
{
  "mode": "companyFilings",
  "companies": [
    "NVDA"
  ],
  "formTypes": [
    "4"
  ],
  "includeProfile": true,
  "includeFilings": true,
  "maxFilingsPerCompany": 50,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "sec-edgar-monitor",
  "userAgent": "",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "form": {
    "label": "Form"
  },
  "companyName": {
    "label": "Company"
  },
  "cik": {
    "label": "CIK"
  },
  "tickers": {
    "label": "Tickers",
    "format": "array"
  },
  "filingDate": {
    "label": "Filed"
  },
  "reportDate": {
    "label": "Period"
  },
  "primaryDocDescription": {
    "label": "Description"
  },
  "accessionNumber": {
    "label": "Accession"
  },
  "documentUrl": {
    "label": "Document",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC EDGAR Scraper — Filings, Financials & Companies](https://apify.com/scrapesage/sec-edgar-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/sec-edgar-scraper) to learn more, explore other use cases, and run it yourself.