# Parse SEC 8-K Earnings & Exec-Change Items

**Use case:** 

Auto-decode 8-K item codes — earnings releases (2.02), exec changes (5.02), acquisitions (2.01) — to catch material company events fast.

## Input

```json
{
  "mode": "eight_k_items",
  "tickers": [
    "NVDA"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxItems": 30,
  "dateFrom": "2025-01-01",
  "dateTo": "",
  "xbrlConcepts": [],
  "statementTypes": [
    "income_statement",
    "balance_sheet",
    "cash_flow"
  ],
  "fiscalPeriods": [],
  "searchQuery": "",
  "searchCiks": [],
  "transactionCodes": [],
  "minTransactionValue": 0,
  "activistOnly": false,
  "eightKItemCodes": [
    "2.02",
    "5.02"
  ],
  "incrementalMode": false,
  "enableAiSummary": false,
  "aiSummaryMaxChars": 40000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "cik": {
    "label": "CIK",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filingDate": {
    "label": "Filed",
    "format": "date"
  },
  "reportDate": {
    "label": "Period",
    "format": "date"
  },
  "accessionNumber": {
    "label": "Accession",
    "format": "text"
  },
  "filingUrl": {
    "label": "Filing",
    "format": "link"
  }
}
```

## About this Actor

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