Google News Scraper avatar

Google News Scraper

Pricing

from $2.50 / 1,000 results

Go to Apify Store
Google News Scraper

Google News Scraper

Pricing

from $2.50 / 1,000 results

Rating

0.0

(0)

Developer

Oleksii Tereshchenko

Oleksii Tereshchenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Google News & Media Intelligence Monitor

📰 Real-time Google News and media sentiment extraction. Monitor company PR, brand mentions, stock tickers, crypto, politics, and industry headlines with zero blocks.


🚀 Why Use This Actor?

Media intelligence, PR sentiment analysis, and competitor monitoring are critical for businesses, traders, and AI research agents. Building a custom news scraper usually encounters rate limits, captchas, and paywalled redirects.

Google News & Media Intelligence Monitor taps directly into Google News's high-speed feed engine:

  • Real-Time Breaking News: Extracts live news articles published within the last hour, day, week, or month.
  • 🎯 Advanced Operators & Time Filters: Filter by time range (1h, 1d, 7d, 30d), language (en, pl, uk, de, fr), and regional country editions.
  • 🏷️ Clean Structured Metadata: Extracts article headlines, publisher name, publisher website, canonical news URL, snippet, and ISO publication timestamps.
  • 🛡️ 100% Reliable & Browserless: No slow browser rendering or proxy costs. Processes 100+ articles in under 3 seconds.

🎯 Use Cases

  • Brand & PR Sentiment Tracking: Monitor what top publications are saying about your company, brand, or executives.
  • Financial & Crypto Market Intelligence: Feed real-time breaking news for stock tickers (e.g. $TSLA, $NVDA) or crypto tokens (Bitcoin, Solana) directly into algorithmic trading or LLM analysis pipelines.
  • Competitive Intelligence: Track competitor press releases, product launches, and media coverage.
  • AI Content Curation: Fuel daily AI newsletters, research digests, or social media bots with fresh industry news.

📥 Input Parameters

ParameterTypeDefaultDescription
queryString"Artificial Intelligence"Topic, brand, ticker, or search query (e.g. Tesla, Bitcoin, Poland Economy).
timeRangeString"any"Freshness filter: any, 1h, 1d, 7d, 30d.
languageString"en"Language code: en, pl, uk, de, fr, es, it.
countryString"US"Edition country: US, GB, PL, UA, DE, FR, CA.
maxResultsInteger100Maximum number of news articles to export (up to 500).

Example Input JSON:

{
"query": "OpenAI OR Anthropic",
"timeRange": "1d",
"language": "en",
"country": "US",
"maxResults": 100
}

📤 Output Dataset Format

Each item in the dataset provides clean news metadata:

{
"title": "Microsoft GitHub Launches Free AI & Data Science Courses",
"publisher": "KDnuggets",
"publisherUrl": "https://www.kdnuggets.com",
"url": "https://news.google.com/rss/articles/CBMiqwF...",
"publishedAt": "2026-09-17T14:30:00.000Z",
"snippet": "Free AI learning paths and generative modeling courses announced by Microsoft.",
"query": "Artificial Intelligence",
"scrapedAt": "2026-09-17T15:35:53.923Z"
}

🐍 Python Integration

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
# Run the Actor
run = client.actor("vujofix/google-news-scraper").call(run_input={
"query": "NVIDIA AI",
"timeRange": "1d",
"language": "en",
"maxResults": 50
})
# Iterate over live headlines
for article in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"[{article['publisher']}] {article['title']} ({article['publishedAt']})")

💰 Pricing

  • Pay-Per-Event: $2.50 / 1,000 news articles
  • Monitoring 200 daily headlines across your niche costs only $0.50.

🛡️ License

Apache-2.0