# Google News Keyword Monitor

**Use case:** 

Monitor Google News articles by keyword and extract headlines, source URLs, publishers, dates, snippets, country, and language.

## Input

```json
{
  "queries": [
    "artificial intelligence startups",
    "climate tech funding"
  ],
  "topic": "",
  "language": "en",
  "country": "US",
  "maxArticles": 40,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  }
}
```

## About this Actor

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