# SEC Investor Alerts Scraper

**Use case:** 

Scrape SEC Investor.gov alerts and bulletins with dates, summaries, full text, categories, and source URLs for monitoring.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.investor.gov/introduction-investing/general-resources/news-alerts/alerts-bulletins"
    }
  ],
  "maxItems": 100,
  "includeBody": true,
  "maxBodyChars": 20000,
  "requestDelayMs": 0
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published date",
    "format": "date"
  },
  "publishedDateText": {
    "label": "Published date text",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "bodyText": {
    "label": "Body text",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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