# Scrape NVIDIA quarterly SEC filings

**Use case:** 

Build a compact NVIDIA 10-Q filing dataset for quarterly financial analysis, spreadsheet export, and filing-link lookup.

## Input

```json
{
  "tickersOrCiks": [
    "NVDA"
  ],
  "forms": [
    "10-Q"
  ],
  "dateFrom": "2023-01-01",
  "maxFilingsPerCompany": 8,
  "includeDocuments": true,
  "requestDelayMs": 120
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "cik": {
    "label": "CIK",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "form": {
    "label": "Form",
    "format": "text"
  },
  "filingDate": {
    "label": "Filing date",
    "format": "date"
  },
  "reportDate": {
    "label": "Report date",
    "format": "date"
  },
  "accessionNumber": {
    "label": "Accession number",
    "format": "text"
  },
  "primaryDocument": {
    "label": "Primary document",
    "format": "text"
  },
  "filingDetailUrl": {
    "label": "Filing detail",
    "format": "link"
  },
  "documentUrl": {
    "label": "Document URL",
    "format": "link"
  },
  "sic": {
    "label": "SIC",
    "format": "text"
  },
  "sicDescription": {
    "label": "SIC description",
    "format": "text"
  },
  "fileNumber": {
    "label": "File number",
    "format": "text"
  },
  "filmNumber": {
    "label": "Film number",
    "format": "text"
  },
  "acceptanceDateTime": {
    "label": "Accepted",
    "format": "text"
  },
  "isXbrl": {
    "label": "XBRL",
    "format": "boolean"
  },
  "items": {
    "label": "Items",
    "format": "text"
  }
}
```

## About this Actor

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