# SEC 10-K Annual Report Scraper for Big Tech

**Use case:** 

Pull the latest 10-K annual reports for Apple, Microsoft, Google, Amazon, Meta and Nvidia from SEC EDGAR. Get form type, date and filing links.

## Input

```json
{
  "maxItems": 50,
  "withDetails": false,
  "tickers": [
    "AAPL",
    "MSFT",
    "GOOGL",
    "AMZN",
    "META",
    "NVDA"
  ],
  "formTypes": [
    "10-K"
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "cik": {
    "label": "CIK",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filingDate": {
    "label": "Filed",
    "format": "text"
  },
  "reportDate": {
    "label": "Report Date",
    "format": "text"
  },
  "accessionNumber": {
    "label": "Accession",
    "format": "text"
  },
  "primaryDocument": {
    "label": "Primary Document",
    "format": "text"
  },
  "primaryDocumentUrl": {
    "label": "Document URL",
    "format": "link"
  },
  "fileNumber": {
    "label": "File Number",
    "format": "text"
  },
  "items": {
    "label": "Items",
    "format": "text"
  },
  "isXBRL": {
    "label": "XBRL",
    "format": "boolean"
  },
  "size": {
    "label": "Size",
    "format": "number"
  },
  "sicDescription": {
    "label": "Industry",
    "format": "text"
  },
  "businessAddress": {
    "label": "Business Address",
    "format": "object"
  },
  "formerNames": {
    "label": "Former Names",
    "format": "array"
  },
  "insiderTransactions": {
    "label": "Insider Transactions",
    "format": "array"
  },
  "filingUrl": {
    "label": "Filing URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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