# Track Quarterly Revenue & EPS Trends from SEC Data

**Use case:** 

Build a quarterly revenue and earnings trend for any US stock from normalized SEC EDGAR financial statements.

## Input

```json
{
  "mode": "financials",
  "tickers": [
    "AMZN"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxItems": 16,
  "dateFrom": "2022-01-01",
  "dateTo": "",
  "xbrlConcepts": [],
  "statementTypes": [
    "income_statement"
  ],
  "fiscalPeriods": [
    "Q1",
    "Q2",
    "Q3",
    "Q4"
  ],
  "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.