# 🏛️ SEC EDGAR Scraper — 10-K, 10-Q, 8-K by Ticker

**Use case:** 

No-code, cheap SEC EDGAR API. Scrape filings data: form type, filing date, report date, accession number, CIK, exchanges, document URLs — cheapest per item.

## Input

```json
{
  "tickers": [
    "AAPL",
    "MSFT"
  ],
  "ciks": [],
  "formTypes": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxFilingsPerCompany": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "cik": {
    "label": "Cik",
    "format": "text"
  },
  "companyName": {
    "label": "Company Name",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "tickers": {
    "label": "Tickers",
    "format": "text"
  },
  "exchanges": {
    "label": "Exchanges",
    "format": "text"
  },
  "sic": {
    "label": "Sic",
    "format": "text"
  },
  "sicDescription": {
    "label": "Sic Description",
    "format": "text"
  },
  "ein": {
    "label": "Ein",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "fiscalYearEnd": {
    "label": "Fiscal Year End",
    "format": "text"
  },
  "stateOfIncorporation": {
    "label": "State Of Incorporation",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filingDate": {
    "label": "Filing Date",
    "format": "date"
  },
  "reportDate": {
    "label": "Report Date",
    "format": "date"
  },
  "acceptanceDateTime": {
    "label": "Acceptance Date Time",
    "format": "date"
  },
  "accessionNumber": {
    "label": "Accession Number",
    "format": "text"
  },
  "primaryDocument": {
    "label": "Primary Document",
    "format": "text"
  },
  "primaryDocDescription": {
    "label": "Primary Doc Description",
    "format": "text"
  },
  "items": {
    "label": "Items",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "number"
  },
  "isXBRL": {
    "label": "Is XBRL",
    "format": "boolean"
  },
  "documentUrl": {
    "label": "Document Url",
    "format": "link"
  },
  "filingIndexUrl": {
    "label": "Filing Index Url",
    "format": "link"
  }
}
```

## About this Actor

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