TL;DR
- A news API returns structured article data β headline, body text, source, publish date, category β instead of a webpage a human has to read, which is what makes it usable inside an app, dashboard, or AI pipeline.
- NewsAPI.org's free tier is development-only β its terms explicitly bar any staging or production use, including internal tools, which is a common gotcha teams discover only after they've built against it.
- Coverage varies by an order of magnitude between vendors β Mediastack lists 7,500+ sources while NewsData.io and Webz.io claim 87,000+ and 300,000+ respectively, so "most sources" isn't a meaningful comparison without checking what's actually indexed for a target region or language.
- GDELT is genuinely free for commercial use with no request cap, but it isn't a drop-in JSON REST API like the others β it's an open dataset reached through Google BigQuery, raw file downloads, or its own Analysis Service.
- Microsoft retired the Bing Search APIs, including Bing News Search, on August 11, 2025 β any comparison still listing it as a live option is out of date.
- A dedicated news API and a general-purpose crawling API solve different halves of the same problem. News APIs give fast, structured access to sources they already index; a crawling API like Nstproxy Crawl fills the gap when the source you need β a paywalled trade outlet, a regional publisher, a company's own newsroom β isn't in any aggregator's index.
What Is a News API?
A news API is a service that returns news article data β headline, body or summary text, source name, author, publish date, and often category or language tags β as structured JSON or XML in response to a query, instead of forcing a client to parse an HTML page built for human readers. Most work the same way underneath: the provider continuously crawls or licenses feeds from thousands of publishers, normalizes the results into a consistent schema, and exposes that index through search and top-headlines endpoints. The differences between vendors come down to how many sources they index, how far back their archive goes, how fresh "real-time" actually is, and what a free tier is legally allowed to be used for.
Best News APIs at a Glance
| API | Free Tier | Paid Entry Price | Coverage | Historical Data | Best For |
|---|---|---|---|---|---|
| Nstproxy Crawl | Free tier available | $79/mo (Starter) | Any public site, not a fixed news index | Whatever the source page still hosts | Sources no news API indexes |
| NewsAPI.org | 100 req/day, dev-only | $449/mo (Business) | 150,000+ sources | 5 years (paid) | General-purpose app prototyping |
| GNews | 100 req/day, 12h delay | β¬49.99/mo (Essential) | 80,000+ sources, 41 languages, 71 countries | Full archive from 2020 (paid) | Multilingual headline search |
| NewsData.io | 200 credits/day, snippets only | $199.99/mo (Basic) | 87,000+ sources, 206 countries, 89 languages | Real-time + archive (paid) | Broad country/language coverage |
| Mediastack | 100 calls/month | $24.99/mo (Standard) | 7,500+ sources, 50+ countries | Limited on free tier | Lightweight, low-volume integrations |
| The Guardian Open Platform | 500 calls/day, full text | Commercial tier via sales | 2M+ articles, Guardian only | Full Guardian archive | Single-publisher deep archive access |
| New York Times API | 500 req/day, 5/min (free) | Free (registration only) | NYT only, multiple endpoints | Archive API back to 1851 | NYT-specific research and apps |
| GDELT Project | Unlimited, fully free | Free (no paid tier) | 100+ languages, global | Jan 1, 1979βpresent | Large-scale event and trend analysis |
| WorldNewsAPI | 50 points/day, backlink required | $39/mo (Reporter) | 210+ countries, 86+ languages | Varies by plan | AI-agent workflows via MCP |
Treat the coverage figures above as vendor-reported and directional β source counts and language claims are marketing numbers each provider defines its own way, so they're useful for ruling options in or out, not for a precise apples-to-apples ranking.
How We Evaluated These News APIs
Each entry below was checked against its own current pricing page or documentation for four things: what the free tier actually allows (request volume, delay, and whether production use is permitted at all), what the first paid tier costs and unlocks, how broad the source coverage is, and how far back historical search reaches. Vendors whose only public information came through a third-party aggregator rather than a directly fetchable first-party page are marked as such in the entry itself rather than presented as independently verified.
Take a Quick Look
When the publisher you need isn't in any news API's index β a regional outlet, a paywalled trade journal, a company's own press page β Nstproxy Crawl turns that URL into clean Markdown or HTML directly, with JavaScript rendering and proxy access built in.
The Best News APIs in 2026
The list below opens with Nstproxy Crawl because it solves the gap every dedicated news API shares β a fixed source index β before moving into the aggregators, premium single-publisher archives, and the one genuinely free, unlimited option.
1. Nstproxy Crawl: Best for Sources No News API Indexes
Nstproxy Crawl is not a news API in the traditional sense β it has no built-in publisher index, category taxonomy, or headline search endpoint the way every other entry on this list does. What it offers instead is the ability to turn any URL into clean Markdown, cleaned HTML, or raw page data through a single API call, with JavaScript rendering in a real browser and Nstproxy's own proxy pool handling network access underneath. That matters because every dedicated news API only returns what it already indexes, and a regional outlet, a paywalled trade publication behind a metered wall, or a company's own newsroom page frequently isn't in any of those indexes at all. For teams building a news-monitoring or media-intelligence pipeline, Nstproxy Crawl is the practical complement that fills whatever gap the aggregators below leave β not a replacement for them when their coverage already includes the needed source.
- Works on any public page, not a fixed catalog β a source going live today doesn't need to wait for a news API vendor to add it to their index.
- JavaScript rendering included β modern publisher sites that lazy-load article bodies or paywalls render fully before the API returns a result.
- Proxy-backed fetching β requests route through Nstproxy's residential or datacenter pool automatically, which matters for publishers that rate-limit or geofence access.
- Pay-per-success billing β a free tier is available for testing, with Starter ($79/mo), Growth ($249/mo), and Scale ($699/mo) subscriptions each including credits equal to the monthly fee; the API bills a request once a response is received with no network error, not per attempt.
curl -X POST "https://api.nstproxy.com/api/v1/crawl/scrape?async=true" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example-news-site.com/article/2026/example-headline", "formats": ["markdown"], "onlyMainContent": true }'
Setting onlyMainContent to true strips navigation, ads, and related-article widgets, returning close to just the headline, byline, and article body β useful when the downstream step is an LLM summarizer or a search index rather than a full-page render.
2. NewsAPI.org: Best for Quick Prototyping
NewsAPI.org indexes over 150,000 sources and is often the first result developers find, but its free "Developer" tier is explicitly restricted to development and testing β the terms state it cannot be used in a staging or production environment, including internally, which catches teams off guard after they've already built against it. Moving to the Business plan ($449/month for 250,000 requests) removes that restriction and extends historical search to five years.
- Large source count β 150,000+ publishers gives broad default coverage for English-language news.
- Simple search and top-headlines endpoints β a small, well-documented API surface that's easy to prototype against quickly.
- Hard production gate on the free tier β worth confirming budget for the Business plan before committing engineering time to a free-tier prototype.
3. GNews: Best for Multilingual Headline Search
GNews indexes 100 million-plus articles from 80,000-plus sources across 41 languages and 71 countries, with a free tier capped at 100 requests per day, a 12-hour delay, and 30-day history. The Essential plan (β¬49.99/month) removes the delay and extends the archive back to 2020.
- Broad language coverage β 41 languages is wider than several competitors' default offering, useful for global monitoring rather than English-only feeds.
- Advanced search operators β AND/OR/NOT boolean search narrows results without post-processing on the client side.
- Official SDKs β JavaScript, TypeScript, and PHP clients are maintained directly by the vendor.
4. NewsData.io: Best for Broad Country and Language Coverage
NewsData.io claims coverage across 87,000-plus sources, 206 countries, and 89 languages β among the widest geographic spreads on this list β with a free tier of 200 credits per day limited to snippets and a 12-hour delay, and the Basic paid plan starting at $199.99/month for full-text, real-time access.
- Wide country coverage β 206 countries is useful for teams monitoring news outside major English-speaking markets.
- Free tier is commercially usable β unlike NewsAPI.org, NewsData.io's free tier does not explicitly bar production use, though it's still snippet-only.
- Sentiment and entity add-ons β available as paid extensions on top of the base plans for teams that need more than raw article text.
5. Mediastack: Best for Lightweight, Low-Volume Integrations
Mediastack covers 7,500-plus sources across 50-plus countries, with a free tier limited to 100 calls per month β low enough that it suits only a demo or a very light integration β and a Standard plan at $24.99/month for 10,000 calls.
- HTTPS included on the free tier β some low-cost news APIs reserve encrypted endpoints for paid plans; Mediastack does not.
- Simple, flat pricing ladder β Standard, Professional, and Business tiers scale linearly by call volume without added complexity.
- Narrower source count β 7,500 sources is the smallest catalog among the general aggregators on this list, worth checking against a specific region's needs before committing.
6. The Guardian Open Platform: Best for Single-Publisher Deep Archive Access
The Guardian's Open Platform gives free API keys 500 calls per day against an archive of over two million Guardian articles, with full article text available by adding the show-fields=body parameter to a request. It's a single-publisher source rather than a multi-outlet aggregator, which makes it a poor fit for broad monitoring but a strong one for anything specifically about Guardian coverage or historical archive research.
- Full article text on the free tier β most aggregators reserve full-text access for paid plans; the Guardian includes it for any registered key.
- Deep single-source archive β two million-plus articles is a meaningful research corpus for one publication alone.
- Single-publisher scope β this is a tradeoff, not a limitation to work around: it's the right tool specifically when Guardian content is the target, not general news monitoring.
7. New York Times API: Best for NYT-Specific Research and Apps
The NYT's developer APIs are free after registration, with most endpoints capped at 500 requests per day and 5 per minute, while the Archive API allows up to 2,000 requests daily and reaches back to 1851. Separate endpoints cover Article Search, Top Stories, Books, and Movie Reviews, each of which must be individually enabled per application.
- No paid tier required β the entire NYT developer program is free, just rate-limited per endpoint.
- Exceptionally deep historical archive β the Archive API's reach back to 1851 goes further than any other entry on this list.
- NYT-only scope β like the Guardian, this fits single-publisher research and apps rather than cross-outlet monitoring.
8. GDELT Project: Best Free, Unlimited Option
GDELT monitors news media in over 100 languages from hundreds of thousands of sources worldwide, with records extending back to January 1, 1979, and is free for unlimited academic, commercial, or governmental use with no request cap. The tradeoff is access model: GDELT isn't a simple REST search endpoint the way the other entries are β it's an open dataset reached through Google BigQuery, direct raw-file downloads, or GDELT's own Analysis Service, which means a meaningfully steeper setup than calling a JSON API with a key.
- Genuinely free, no tier gating β every other entry on this list eventually hits a paywall; GDELT does not.
- Enormous historical depth β over a quarter-billion event records across 300-plus categories since 1979.
- Not a plug-and-play REST API β expect a BigQuery or bulk-file workflow instead of a single authenticated HTTP request.
9. WorldNewsAPI: Best for AI-Agent Workflows
WorldNewsAPI covers 210-plus countries and 86-plus languages, with a free tier of 50 points per day that requires a backlink to the service, and a Reporter tier starting at $39/month. Its standout feature is native MCP (Model Context Protocol) integration, aimed at teams wiring news retrieval directly into AI-agent tool calls rather than a traditional application backend.
- Wide country and language coverage β 210+ countries is among the broadest geographic claims on this list.
- MCP integration β built specifically for AI-agent tool-calling workflows rather than only REST clients.
- Backlink requirement on the free tier β an unusual condition worth knowing about before relying on the free plan for a client project.
Selection Guide: Which News API Should You Use?
Match the choice to what's actually being built rather than to whichever API ranks first in a search result. A quick prototype or internal demo tolerates NewsAPI.org's free tier as long as it never ships to production; an app that does ship belongs on a paid aggregator plan (GNews, NewsData.io, or Mediastack, depending on budget and required coverage) chosen for the specific languages and countries the product targets rather than the largest advertised source count. Research or historical analysis on one publication specifically fits the Guardian or NYT's own APIs better than any aggregator. Large-scale trend or event analysis across decades of global coverage is GDELT's niche, provided the team can work with BigQuery or bulk files instead of a simple REST call. AI-agent tool-calling workflows fit WorldNewsAPI's MCP-native design. And whenever the specific source needed isn't covered by any of the above, Nstproxy Crawl fills that gap directly rather than requiring a wait for aggregator coverage to catch up.
Common Use Cases for News APIs
Media monitoring and brand mention tracking, algorithmic trading signals derived from breaking financial news, content aggregation for a news reader or newsletter product, academic and journalistic research on historical coverage patterns, and feeding current-events context into an AI agent or RAG pipeline are the recurring reasons teams reach for one of these APIs rather than building a bespoke feed from scratch.
Conclusion
No single news API on this list covers every language, region, and publisher a project might eventually need, which is why the right answer is usually a primary aggregator picked for its specific coverage and pricing fit, plus a fallback for the sources that aggregator doesn't index. NewsAPI.org, GNews, NewsData.io, and Mediastack cover that primary role at different price points; the Guardian and NYT APIs serve single-publisher deep research; GDELT is the free, unlimited option for large-scale analysis; and Nstproxy Crawl is the practical complement when the source a project actually needs isn't in any of their indexes.
FAQ
Q: What's the difference between a news API and a general web scraper?
A news API returns pre-indexed, structured article data from a fixed catalog of sources the vendor already crawls and normalizes, while a general scraper or crawling API like Nstproxy Crawl fetches and parses whatever URL it's pointed at, including sources no news API has indexed β the tradeoff is that a scraper doesn't come with a built-in search index or category taxonomy the way a dedicated news API does.
Q: Is there a truly free news API for commercial use?
GDELT is free with no request cap for academic, commercial, or governmental use of any kind, though it requires working with BigQuery, raw file downloads, or its Analysis Service rather than a simple REST call; among simpler REST APIs, NewsData.io's free tier is the one that doesn't explicitly bar production/commercial use, though it's limited to snippets with a 12-hour delay.
Q: Can I use NewsAPI.org's free tier in a live product?
No β NewsAPI.org's free "Developer" tier is explicitly restricted to development and testing and cannot be used in a staging or production environment, including internal tools, per its own pricing terms; production use requires the paid Business plan starting at $449/month.
Q: Is the Bing News Search API still available?
No β Microsoft retired the Bing Search APIs, including Bing News Search, on August 11, 2025, so any comparison still listing it as an active option is out of date.
Q: Which news API has the deepest historical archive?
The New York Times' Archive API reaches back to 1851, and GDELT's event records extend to January 1, 1979 with global scope β both go significantly further back than the 2020-forward archives typical of general aggregators like GNews and NewsData.io.
Q: What should I do if the publisher I need isn't covered by any news API?
Fetch that specific source directly with a general-purpose crawling API β Nstproxy Crawl turns the publisher's URL into clean Markdown or HTML with JavaScript rendering and proxy access handled automatically, which works for any public page regardless of whether a news API vendor has indexed it.



