# Google News Business Topic Extractor

**Use case:** 

Extract Google News Business topic articles with publisher, URL, publication date, description, language, and country fields.

## Input

```json
{
  "queries": [
    "artificial intelligence"
  ],
  "topic": "BUSINESS",
  "language": "en",
  "country": "US",
  "maxArticles": 60,
  "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.