The best Google News API alternative in 2025 is a dedicated Google News scraper that returns structured JSON with titles, publishers, dates, and snippets — without the rate limits or parsing headaches of RSS feeds. Google killed its official News API back in 2013, and the public RSS endpoint (news.google.com/rss) still works but caps results at ~100 items, lacks filtering depth, and breaks silently when Google tweaks markup. For production use, scraper-based actors and paid news APIs have filled the gap.
Quick Answer
The strongest Google News API alternative in 2025 is an Apify-based scraper like Google News Scraper, Robust and Affordable, which handles keyword queries, topic feeds, and direct URLs while returning clean JSON. Paid APIs such as NewsAPI, GNews, and SerpAPI also work but charge $50–$450/month for comparable volumes. The RSS feed remains free but is limited to ~100 results per query, has no historical depth, and requires manual XML parsing. Pick a scraper when you need structured data, scale, and pay-per-use pricing — pick RSS only for low-volume hobby projects.
Why did Google shut down its News API?
Google deprecated the official Google News API on May 15, 2011, with full shutdown by December 1, 2011. The reason was business-driven: publishers complained that programmatic access to headlines and snippets diverted traffic away from their sites, and Google was negotiating licensing deals across multiple jurisdictions. Replacing the API with RSS feeds and the consumer-facing news.google.com site was the compromise.
The result has been 12+ years of fragmented alternatives: a stripped-down RSS feed, third-party paid APIs, and scrapers that emulate browser behavior to pull live results.
Does Google News still have an RSS feed in 2025?
Yes, Google News RSS feeds still work in 2025. The endpoints are:
- Search query:
https://news.google.com/rss/search?q=YOUR_QUERY&hl=en-US&gl=US&ceid=US:en - Topic feed:
https://news.google.com/rss/headlines/section/topic/TECHNOLOGY?hl=en-US&gl=US&ceid=US:en - Geographic:
https://news.google.com/rss/headlines/section/geo/LOCATION?hl=en-US&gl=US&ceid=US:en
Limitations you'll hit fast:
| Constraint | RSS Feed Reality |
|---|---|
| Max results per query | ~100 items |
| Historical depth | Last ~30 days only |
| Article body | Titles + snippets only |
| Sort options | Relevance only (no date sort via API) |
| Rate limiting | Soft — IPs get throttled after ~100 req/hour |
| Output format | XML (you parse it yourself) |
If you need 500 results for a brand-monitoring dashboard or want to filter by publisher, RSS won't cut it.
What are the best Google News API alternatives?
Here's how the realistic options compare in 2025:
1. Apify Google News Scraper (pay-per-use)
The Google News Scraper, Robust and Affordable actor takes a keyword, topic, or exact Google News URL and returns structured items: title, publisher, publication date, snippet, and article URL. Pricing is pay-per-use on Apify — no monthly minimum, no credit card lock-in. Typical cost runs a few cents per thousand articles depending on compute usage.
Best for: developers who already use Apify, anyone who wants exact Google News parity without hitting an RSS ceiling, and teams that prefer usage-based billing.
2. NewsAPI.org
NewsAPI aggregates from 80,000+ sources globally, not just Google News. Free tier allows 100 requests/day with a 24-hour delay; paid plans start at $449/month for commercial use with real-time access.
Best for: aggregating across many publishers, prototyping (free tier). Watch out for: the developer plan blocks production use; pricing jump is steep.
3. GNews API
Built specifically as a Google News replacement. Free tier: 100 requests/day. Paid: $49.99/month for 10K requests, up to $499.99/month for unlimited.
Best for: drop-in replacement for Google News with predictable monthly billing.
4. SerpAPI Google News endpoint
SerpAPI offers a dedicated google_news engine. Plans start at $75/month for 5,000 searches.
Best for: teams already using SerpAPI for Google search results who want one vendor.
5. Bing News Search API (Azure)
Microsoft's alternative via Azure Cognitive Services. S1 tier: $7 per 1,000 transactions. Bing News has different ranking and source coverage than Google.
Best for: Azure-native stacks where Google parity isn't required.
6. Direct RSS parsing (DIY)
Free, but you build everything: XML parsing, deduplication, retry logic, IP rotation when Google throttles you.
Best for: hobbyists, single-keyword feeds, scripts that run a few times a day.
How much does a Google News API alternative cost in 2025?
Real pricing for ~10,000 articles per month:
| Option | Monthly cost | Notes |
|---|---|---|
| RSS feed (DIY) | $0 | Plus your dev time + proxy costs if throttled |
| Apify Google News Scraper | ~$5–$20 | Pay-per-use; scales linearly |
| GNews API | $49.99 | Hard cap at 10K requests |
| NewsAPI.org | $449 | Commercial tier required for production |
| SerpAPI | $75 | 5,000 searches included |
| Bing News API S1 | $70 | $7 × 10 |
For most small-to-mid projects, pay-per-use scrapers win on cost flexibility — you're not paying for unused quota.
How do I scrape Google News without getting blocked?
Three things matter:
- Rotate IPs. Google throttles per-IP after a few hundred requests. Residential or datacenter proxy pools handle this. Apify actors include proxy rotation by default.
- Respect rate. Even with proxies, hammering one query at 100 req/sec triggers CAPTCHA. Stay under ~1 request/second per IP.
- Handle layout shifts. Google updates news.google.com markup roughly every 6–12 months. A maintained actor patches selectors so your pipeline doesn't break at 2 AM.
Building this yourself takes 2–4 days plus ongoing maintenance. A pre-built actor offloads all three.
Can I use Google News data commercially?
This is a gray area. Google's Terms of Service prohibit automated scraping of its services, but news headlines, publisher names, and publication dates are facts — not copyrightable individual elements. The 1991 Feist v. Rural Supreme Court decision and the 2022 hiQ v. LinkedIn ruling generally protect scraping of public data.
Practical guidance:
- Headlines + snippets + links + metadata: widely considered fair use for monitoring, analytics, and search.
- Full article text: requires licensing from the publisher, not Google.
- Republishing as your own content: don't.
When in doubt, attribute publishers and link back. Most monitoring, brand-tracking, and SEO use cases are well within established practice.
What's the best alternative for real-time news monitoring?
For real-time monitoring (sub-5-minute freshness), you have three viable paths:
- Polled scraper on a schedule. Run an Apify actor every 5 minutes against your keyword list. Store deduped results in your database. Cost scales with frequency × keyword count.
- Webhooks via paid API. NewsAPI and GNews don't offer webhooks; you still poll. SerpAPI is the same. So polling is the de facto pattern.
- RSS + cron. Cheapest but limited to ~100 results and 30 days. Fine for tracking 1–5 keywords with low article volume.
For brand monitoring across 50+ keywords, a scheduled scraper job is almost always cheaper than monthly API tiers.
FAQ
Q: Is the Google News RSS feed still free in 2025?
Yes, the RSS feed at news.google.com/rss/search is free and unauthenticated. You'll hit soft IP throttling after roughly 100 requests per hour and results are capped at ~100 items per query.
Q: What replaced the official Google News API after 2013? Nothing official from Google — only the consumer site and RSS feeds. Third-party APIs (NewsAPI, GNews, SerpAPI) and scraper actors on platforms like Apify filled the gap with structured JSON output and higher result limits.
Q: How many articles can I get from Google News per query? The RSS feed maxes out around 100 items per search query and covers roughly the last 30 days. Scrapers that paginate the web UI can return several hundred results per query by traversing multiple result pages.
Q: Is scraping Google News legal? Scraping public headlines, snippets, dates, and URLs is generally permitted under U.S. case law (hiQ v. LinkedIn), though it violates Google's ToS. Republishing full article bodies requires a license from the publisher, not from Google.
Q: Which Google News API alternative is cheapest for 10,000 articles/month? A pay-per-use scraper on Apify typically runs $5–$20 for that volume, versus $49.99 for GNews or $449 for NewsAPI's commercial plan. RSS parsing is free if you can stay under the 100-item-per-query ceiling and accept building the pipeline yourself.