# Scrape SEC XBRL Financials & Metrics

**Use case:** 

Scrape structured XBRL financial metrics from SEC EDGAR: revenue, net income, assets, EPS and more, by ticker, CIK or name. No login. Export to CSV.

## Input

```json
{
  "mode": "financials",
  "companies": [
    "AAPL",
    "GOOGL"
  ],
  "includeProfile": true,
  "includeFilings": true,
  "maxFilingsPerCompany": 50,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "sec-edgar-monitor",
  "userAgent": "",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "name": {
    "label": "Company"
  },
  "ticker": {
    "label": "Ticker"
  },
  "cik": {
    "label": "CIK"
  },
  "metrics": {
    "label": "Metrics"
  },
  "conceptsAvailable": {
    "label": "XBRL concepts"
  }
}
```

## About this Actor

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