DEV Community

Alex Spinov
Alex Spinov

Posted on

Monitor Any Industry News for Free with Google News RSS (No API Key)

Monitoring news about your industry, competitors, or brand used to mean refreshing Google News 20 times a day. There's a better way — and it doesn't require an API key or a paid news service.

The RSS Secret

Google News publishes RSS feeds for any search query. This is a public, stable endpoint that returns structured XML with article titles, sources, publication dates, and links.

The URL pattern:

https://news.google.com/rss/search?q=YOUR_QUERY&hl=en&gl=US&ceid=US:en
Enter fullscreen mode Exit fullscreen mode

Replace YOUR_QUERY with your search term. That's it. No API key. No authentication.

What You Get

Each RSS item contains:

  • Title — article headline
  • Link — URL to the original article
  • Source — publication name (Reuters, TechCrunch, Bloomberg...)
  • Published date — when the article was published
  • Description — article snippet
{
  "title": "Electric Vehicle Sales Surge 40% in Q1 2026",
  "source": "Reuters",
  "link": "https://reuters.com/...",
  "pubDate": "2026-03-20T08:00:00Z",
  "description": "Global EV sales reached 4.2 million units..."
}
Enter fullscreen mode Exit fullscreen mode

Why RSS > HTML Scraping

Most news scrapers try to parse Google News HTML — which changes constantly and is heavily obfuscated with JavaScript rendering.

RSS feeds are:

  • Stable — the format hasn't changed in years
  • Fast — one HTTP request returns 10+ articles
  • Structured — XML is trivial to parse
  • Reliable — no JavaScript rendering needed

Practical Use Cases

Competitive monitoring: Set up feeds for each competitor's brand name. Get alerted when they're in the news.

Market research: Query "[industry] market" to track industry trends and funding announcements.

PR monitoring: Track your brand mentions across news sources.

Content curation: Aggregate news from multiple queries into a daily digest.

Sales intelligence: Know what's happening in a prospect's industry before your sales call.

Automating It

I packaged this into a ready-to-use tool on Apify: Google News Scraper. Enter queries, get structured JSON. Schedule it to run daily.

Combine with my other tools for complete market intelligence:

All 77 tools: GitHub

Custom news monitoring setup — $20: Order via Payoneer | Services

Top comments (0)