# Scrape SEC EDGAR Company Filings

**Use case:** 

Scrape any public company's SEC EDGAR profile and recent filings: form type, filing date, accession number and document links by ticker or CIK.

## Input

```json
{
  "mode": "companyFilings",
  "companies": [
    "AAPL",
    "MSFT"
  ],
  "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.