# Tesla Income Statement from SEC EDGAR

**Use case:** 

Scrape Tesla annual income statements from SEC EDGAR XBRL filings for revenue, expenses, and net income analysis.

## Input

```json
{
  "mode": "income-statement",
  "tickers": [
    "TSLA"
  ],
  "period": "annual",
  "maxYears": 8
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "statement": {
    "label": "Statement",
    "format": "text"
  },
  "period": {
    "label": "Period",
    "format": "text"
  },
  "fiscalYear": {
    "label": "FY",
    "format": "number"
  },
  "endDate": {
    "label": "End Date",
    "format": "text"
  },
  "Revenues": {
    "label": "Revenue",
    "format": "number"
  },
  "NetIncomeLoss": {
    "label": "Net Income",
    "format": "number"
  },
  "Assets": {
    "label": "Assets",
    "format": "number"
  },
  "StockholdersEquity": {
    "label": "Equity",
    "format": "number"
  },
  "EarningsPerShareDiluted": {
    "label": "EPS",
    "format": "number"
  },
  "form": {
    "label": "Form",
    "format": "text"
  }
}
```

## About this Actor

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