# Bulk monitor news for 100 keywords at once

**Use case:** 

Monitor Google News for up to 100 search terms in one run, deduplicated to one row per article with title, source, snippet, date, and link.

## Input

```json
{
  "searchTerms": [
    "Nvidia",
    "Tesla",
    "OpenAI",
    "Apple",
    "Microsoft",
    "Amazon",
    "Google",
    "Meta"
  ],
  "timeRange": "day",
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 10
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "link": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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