# SEC Comment Letters Scraper for Tech Companies

**Use case:** 

Scrape SEC comment letters and company responses for major public tech companies by ticker or CIK.

## Input

```json
{
  "companies": [
    "AAPL",
    "MSFT",
    "AMZN"
  ],
  "startDate": "2021-01-01",
  "maxItems": 100,
  "includeArchiveShards": true,
  "includeDocumentText": false,
  "maxDocumentTextChars": 0,
  "requestDelayMs": 150
}
```

## Output

```json
{
  "cik": {
    "label": "CIK"
  },
  "ticker": {
    "label": "Ticker"
  },
  "companyName": {
    "label": "Company name"
  },
  "form": {
    "label": "SEC form"
  },
  "filingDate": {
    "label": "Filing date"
  },
  "reportDate": {
    "label": "Report date"
  },
  "accessionNumber": {
    "label": "Accession number"
  },
  "primaryDocument": {
    "label": "Primary document"
  },
  "documentDescription": {
    "label": "Document description"
  },
  "documentUrl": {
    "label": "Document URL",
    "format": "link"
  },
  "filingDetailUrl": {
    "label": "Filing detail URL",
    "format": "link"
  },
  "archiveFile": {
    "label": "Archive shard"
  },
  "isStaffLetter": {
    "label": "SEC staff letter"
  },
  "isCompanyResponse": {
    "label": "Company response"
  },
  "documentType": {
    "label": "Document type"
  },
  "documentText": {
    "label": "Document text preview"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC Comment Letters Scraper](https://apify.com/automation-lab/sec-comment-letters-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/sec-comment-letters-scraper) to learn more, explore other use cases, and run it yourself.