# Google News PR Monitor Workflow

**Use case:** 

Track PR and media mentions in Google News across multiple queries with source, title, URL, date, and snippet extraction.

## Input

```json
{
  "queries": [
    "OpenAI partnership",
    "Microsoft AI regulation",
    "Google antitrust"
  ],
  "topic": "",
  "language": "en",
  "country": "US",
  "maxArticles": 75,
  "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.