Google News Scraper avatar

Google News Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Google News Scraper

Google News Scraper

Search Google News by keyword and export articles as structured data: title, description, source, published date and article URL. Supports multiple keywords, language/region targeting and per-keyword limits.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

code craker

code craker

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

4 days ago

Last modified

Share

Search Google News by keyword and export articles as structured data. Fetches the Google News RSS search feed directly — no browser, no proxies, so runs are fast and cheap.

Input

FieldTypeDescription
searchQuerystringKeyword/phrase to search (query is accepted as an alias). Multiple lines = multiple keywords.
queriesarrayMultiple keywords; results are combined and de-duplicated. maxItems applies per keyword.
maxItemsintegerMax articles per keyword (Google News RSS serves at most ~100). Default 20.
languagestringTwo-letter language code, e.g. en. Default en.
regionstringTwo-letter country code, e.g. US, ZA, ZW. Default US.
timePeriodstringOptional recency window, e.g. 1h, 1d, 7d, 1y.
extractImagesbooleanAccepted for compatibility; the RSS feed has no images (no-op).

Output

One dataset item per article:

{
"title": "…",
"description": "…",
"articleUrl": "https://news.google.com/rss/articles/CBMi…",
"googleNewsUrl": "https://news.google.com/rss/articles/CBMi…",
"source": "Publisher name",
"sourceUrl": "https://publisher.example.com",
"publishedAt": "2026-07-02T13:48:15.000Z",
"publishedAtRaw": "Thu, 02 Jul 2026 13:48:15 GMT",
"guid": "…",
"searchQuery": "econet",
"language": "en",
"region": "US",
"scrapedAt": "…"
}

articleUrl/googleNewsUrl are Google News wrapper URLs (the same shape other Google News actors return); resolve them to the real article URL downstream if needed.