# Historical SEC EDGAR filings backfill extractor

**Use case:** 

Backfill historical SEC EDGAR filing metadata across companies and forms for compliance archives, financial datasets, alerts, or RAG pipelines.

## Input

```json
{
  "identifiers": [
    "AAPL",
    "NVDA",
    "MSFT"
  ],
  "formTypes": [
    "10-K"
  ],
  "filingDateFrom": "2010-01-01",
  "filingDateTo": "2025-12-31",
  "includeHistorical": true,
  "maxItems": 500,
  "userAgent": "Automation Lab SEC EDGAR Filings Scraper contact@automation-lab.ai"
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "cik": {
    "label": "CIK",
    "format": "string"
  },
  "form": {
    "label": "Form",
    "format": "string"
  },
  "filingDate": {
    "label": "Filing date",
    "format": "string"
  },
  "reportDate": {
    "label": "Report date",
    "format": "string"
  },
  "accessionNumber": {
    "label": "Accession number",
    "format": "string"
  },
  "primaryDocumentDescription": {
    "label": "Document",
    "format": "string"
  },
  "size": {
    "label": "Bytes",
    "format": "integer"
  },
  "filingDetailsUrl": {
    "label": "Filing details",
    "format": "string"
  },
  "primaryDocumentUrl": {
    "label": "Primary document",
    "format": "string"
  }
}
```

## About this Actor

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