# US Stock Market News Scraper

**Use case:** 

Scrape the latest US stock market news from Google News: Wall Street, S&P 500, and Nasdaq coverage. Titles, sources, links. Export to JSON, CSV, Excel.

## Input

```json
{
  "searches": [
    {
      "keyword": "Stock market",
      "country": "US",
      "language": "en"
    },
    {
      "keyword": "Wall Street",
      "country": "US",
      "language": "en"
    },
    {
      "keyword": "S&P 500",
      "country": "US",
      "language": "en"
    }
  ],
  "limitMultipleResults": 20
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "date": {
    "label": "Published Date",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  }
}
```

## About this Actor

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