# Scrape Articles from Google News URLs & Feeds

**Use case:** 

Paste Google News search or RSS URLs to export their articles with full text, author, publish date and the real publisher URL as structured JSON.

## Input

```json
{
  "searchTerms": [
    "artificial intelligence"
  ],
  "includeTopHeadlines": false,
  "startUrls": [
    "https://news.google.com/search?q=climate%20change"
  ],
  "language": "en-US",
  "country": "US",
  "timeWindow": "",
  "resolveArticleUrls": true,
  "includeArticleContent": true,
  "includeRelatedArticles": true,
  "maxItems": 100,
  "maxItemsPerFeed": 0,
  "sinceDate": "",
  "dedupeByResolvedUrl": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "Article URL",
    "format": "link"
  },
  "feedType": {
    "label": "Feed",
    "format": "text"
  },
  "query": {
    "label": "Search term",
    "format": "text"
  },
  "topic": {
    "label": "Topic",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "section": {
    "label": "Section",
    "format": "text"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "relatedCount": {
    "label": "Related",
    "format": "number"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  }
}
```

## About this Actor

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