# SEC EDGAR US Bank Financials Scraper

**Use case:** 

Scrape revenue, net income and assets for JPMorgan, Bank of America, Wells Fargo and Citi from SEC EDGAR XBRL financial facts for benchmarking.

## Input

```json
{
  "maxItems": 100,
  "tickers": [
    "JPM",
    "BAC",
    "WFC",
    "C"
  ],
  "concepts": [
    "Revenues",
    "NetIncomeLoss",
    "Assets"
  ],
  "taxonomy": "us-gaap"
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "cik": {
    "label": "CIK",
    "format": "text"
  },
  "concept": {
    "label": "Concept",
    "format": "text"
  },
  "label": {
    "label": "Label",
    "format": "text"
  },
  "taxonomy": {
    "label": "Taxonomy",
    "format": "text"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "start": {
    "label": "Start",
    "format": "text"
  },
  "end": {
    "label": "End",
    "format": "text"
  },
  "fy": {
    "label": "Fiscal Year",
    "format": "number"
  },
  "fp": {
    "label": "Fiscal Period",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filed": {
    "label": "Filed",
    "format": "text"
  },
  "frame": {
    "label": "Frame",
    "format": "text"
  },
  "accessionNumber": {
    "label": "Accession",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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