Google News Scraper avatar

Google News Scraper

Under maintenance

Pricing

from $0.10 / 1,000 dataset items

Go to Apify Store
Google News Scraper

Google News Scraper

Under maintenance

Scrape Google News RSS feed for articles matching a search query, with full metadata extraction.

Pricing

from $0.10 / 1,000 dataset items

Rating

0.0

(0)

Developer

Moeeze Hassan

Moeeze Hassan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Scrape the Google News RSS feed for articles matching a search query. The actor returns structured article metadata including title, link, publication date, source, and description snippet, with support for country and language localization.

Features

  • Keyword search across Google News
  • Country and language localization (e.g. US/en, DE/de)
  • Full metadata extraction from the RSS feed
  • Configurable result limit (up to 100 articles)

Input Fields

FieldTypeRequiredDefaultDescription
querystring""Search query for Google News.
maxResultsinteger30Maximum number of articles to return (1–100).
countrystringUSGoogle News country code (e.g. US, GB, DE).
languagestringenGoogle News language code (e.g. en, de, fr).

Output Fields

Each pushed dataset item is an article record with the following fields:

FieldTypeDescription
titlestringArticle title.
linkstringDirect URL to the article.
pubDatestringPublication date (RFC-822 format, as provided by Google News).
sourcestringPublisher / news source name.
descriptionstringArticle snippet / description (may contain HTML).
guidstringUnique article identifier from the feed.

Usage Example

Search for "artificial intelligence" news (US English)

{
"query": "artificial intelligence",
"maxResults": 30,
"country": "US",
"language": "en"
}

Get the latest 50 tech news articles from the UK

{
"query": "technology",
"maxResults": 50,
"country": "GB",
"language": "en"
}

German-language news about "Klimawandel"

{
"query": "Klimawandel",
"maxResults": 20,
"country": "DE",
"language": "de"
}

Run via the Apify CLI

$apify run google-news-scraper --input '{"query":"artificial intelligence","maxResults":30}'

Data Source

Articles are fetched from the Google News RSS search endpoint at https://news.google.com/rss/search with hl, gl, and ceid locale parameters.