# Google News Scraper

**Use case:** 

Scrape Google News by keyword or topic. Get titles, URLs, publishers, timestamps, and thumbnails in clean JSON. No API key needed. 130+ languages supported.

## Input

```json
{
  "mode": "search",
  "query": "world cup",
  "topic": "Business",
  "language": "en-US",
  "maxResults": 100
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "object"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "number"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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