# Get 10-K annual reports by ticker

**Use case:** 

Fetch the latest 10-K annual report filings for any stock ticker from SEC EDGAR. Export filing dates, accession numbers, and document links.

## Input

```json
{
  "searchQuery": "annual report",
  "forms": [
    "10-K"
  ],
  "startDate": "",
  "endDate": "",
  "companies": [
    "AAPL",
    "MSFT",
    "NVDA"
  ],
  "maxItems": 30
}
```

## Output

```json
{
  "accessionNumber": {
    "label": "Accession number",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "tickers": {
    "label": "Tickers",
    "format": "array"
  },
  "formType": {
    "label": "Form",
    "format": "string"
  },
  "filedAt": {
    "label": "Filed",
    "format": "string"
  },
  "periodEnding": {
    "label": "Period ending",
    "format": "string"
  },
  "items": {
    "label": "Items",
    "format": "array"
  },
  "sicCode": {
    "label": "SIC",
    "format": "string"
  },
  "filingUrl": {
    "label": "Filing",
    "format": "string"
  },
  "filingIndexUrl": {
    "label": "Filing index",
    "format": "string"
  }
}
```

## About this Actor

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