# Scrape German News — Google News DE

**Use case:** 

Scrape German business and tech news from Google News. Sentiment, sources, full articles.

## Input

```json
{
  "queries": [
    "Wirtschaft",
    "Technologie"
  ],
  "language": "de",
  "country": "DE",
  "maxArticlesPerQuery": 25,
  "dateRange": "7d",
  "includeDuplicates": false,
  "includeFullText": false,
  "outputFormat": "articles",
  "sortBy": "date",
  "maxConcurrency": 5,
  "requestTimeoutSecs": 30,
  "retryCount": 3
}
```

## Output

```json
{
  "articleId": {
    "label": "Article id"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "object"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "datetime"
  },
  "url": {
    "label": "Article URL",
    "format": "link"
  },
  "description": {
    "label": "Description"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "object"
  },
  "readingTimeMinutes": {
    "label": "Read Time (min)",
    "format": "number"
  },
  "query": {
    "label": "Query"
  },
  "topics": {
    "label": "Topics"
  }
}
```

## About this Actor

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