# Scrape Balance Sheets & Cash Flow from SEC EDGAR

**Use case:** 

Download normalized balance sheets and cash flow statements for any US public company across years, as ready-to-model JSON or CSV.

## Input

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

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "statementType": {
    "label": "Statement",
    "format": "text"
  },
  "period": {
    "label": "Period",
    "format": "text"
  },
  "fiscalYear": {
    "label": "FY",
    "format": "number"
  },
  "fiscalPeriod": {
    "label": "Period",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "lineItems": {
    "label": "Line items",
    "format": "array"
  }
}
```

## 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.