# Find 'Risk Factors' in Pharma 10-Q Filings for Due Diligence

**Use case:** 

Scrape 10-Q filings for pharmaceutical companies to identify and analyze sections containing 'Risk Factors' for due diligence and competitive analysis. This all

## Input

```json
{
  "companies": [
    "JNJ",
    "PFE",
    "MRK",
    "LLY"
  ],
  "filingTypes": [
    "10-Q"
  ],
  "dateRangeFrom": "2023-07-01",
  "maxItemsPerCompany": 3,
  "maxItems": 500,
  "fetchPrimaryDocText": true,
  "containsKeyword": "Risk Factors",
  "userAgentEmail": "due-diligence@example.com"
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker"
  },
  "companyName": {
    "label": "Company name"
  },
  "filingType": {
    "label": "Filing type"
  },
  "filedAt": {
    "label": "Filed at"
  },
  "reportingPeriod": {
    "label": "Reporting period"
  },
  "primaryDocUrl": {
    "label": "Primary doc url"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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