# Scrape MarketWatch stock news

**Use case:** 

Scrape stock market news from MarketWatch by ticker or keyword. Export headlines, summaries, timestamps, and links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.marketwatch.com/search?q=AAPL&ts=0&tab=All%20News"
    }
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "url": {
    "label": "Url"
  },
  "title": {
    "label": "Title"
  },
  "headline": {
    "label": "Headline"
  },
  "summary": {
    "label": "Summary"
  },
  "description": {
    "label": "Description"
  },
  "section": {
    "label": "Section"
  },
  "authors": {
    "label": "Authors"
  },
  "publishedAt": {
    "label": "Published at"
  },
  "updatedAt": {
    "label": "Updated at"
  },
  "imageUrl": {
    "label": "Image url"
  },
  "keywords": {
    "label": "Keywords"
  },
  "articleBody": {
    "label": "Article body"
  },
  "paragraphs": {
    "label": "Paragraphs"
  }
}
```

## About this Actor

This example demonstrates how to use [MarketWatch Scraper](https://apify.com/lexis-solutions/marketwatch-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lexis-solutions/marketwatch-scraper) to learn more, explore other use cases, and run it yourself.