NewYour Exa or Tako SDK, up to 5× cheaper.

Compared with GNews

vsGNews

The GNews alternative for AI agents

GNews sells cheap daily quotas of articles. typesearch sells judged results for agents: a calibrated relevance probability on each, the top ones read before they’re ranked, typed answers in the same call — pay as you go, with no daily quota to use up.

Checked Sep 25, 2026 · A low-cost news API with full text

At the same volume

  • Essential · 30,000 requests a month

    $42/ month

    typesearch, fast mode

    GNews: €49.99−15%

    €1.67 per 1,000 · 1,000 requests a day

  • Business · 150,000 requests a month

    $210/ month

    typesearch, fast mode

    GNews: €99.9953% less on GNews

    €0.67 per 1,000 · 5,000 requests a day

  • Enterprise · 750,000 requests a month

    $1,050/ month

    typesearch, fast mode

    GNews: €249.9977% less on GNews

    €0.33 per 1,000 · 25,000 requests a day

GNews prices are in euros; we compare them at par with the dollar, which makes GNews look cheaper than it is. Its quotas are daily (reset at 00:00 UTC, no carry-over), so monthly volume assumes 30 days of full use. One request returns up to 25, 50 or 100 articles by plan; up to 50 judged results on typesearch.

Checked Sep 25, 2026 · Sources: gnews.io/pricing

Side by side

What GNews publishes, next to what typesearch does. Each of their facts links to where we read it.

Side by sideGNewstypesearch
PricingMonthly plans in euros, with a daily quota: €49.99 to €249.99 Pay as you go, per search: $1.40 fast, $2.20 normal, $5.60 deep, per 1,000. No plan, no minimum
Free plan100 requests a day, 10 articles each, 12-hour delay; non-commercial projects only $5 in credit once, valid 30 days — not limited to development or testing
How far backSince 2020 on paid plans; 30 days on the free plan A rolling 30-day window: built for what’s happening now
Coverage80,000+ sources, 71 countries and 41 languages (their figures; search documents 37 and 26) Sources in 130+ countries and 30+ languages; counts by country and language in GET /v1/sources
Full article textYes, on paid plans No: title, the outlet’s standfirst and short verbatim excerpts, always with the link
Per request10 to 100 articles, by plan Up to 50 judged results; up to five queries per request
RankingSorted by publication date or relevance; top headlines follow Google News A calibrated relevance probability per result; the top ones read and verified in normal and deep
EnrichmentNone published (no sentiment, tags or deduplication) Your own typed questions per result, tone, same-story grouping, who published first
Rate limit1 request/second free, 10 on paid plans 10 requests/second; 50 with a monthly plan
SDKsJavaScript/TypeScript and PHP OpenAPI 3.1; works with the official Exa, Tako and Perplexity SDKs
MCP serverYes, remote (search and top headlines) Yes, remote: api.typesearch.ai/mcp

Checked Sep 25, 2026 · Sources: gnews.io/pricing, docs.gnews.io/endpoints/search-endpoint, docs.gnews.io, docs.gnews.io/error-handling

How the parameters map

Each GNews parameter and what it becomes on typesearch. You rewrite one request; your agent’s logic stays.

GNews parameterStatusOn typesearch
qSamequery. Or up to five queries, judged together.
inLimitedWe judge title and standfirst, and read the top articles in normal and deep.
lang, countryLimitedQuery in the language you want, or restrict to regional outlets with include_domains.
from, toMappedpublished_after, published_before, within the last 30 days.
maxMappedmax_results, up to 50.
sortbyLimitedRanked by a calibrated relevance probability; published_at to sort by date.
pageNot supportedNo pagination: ask for up to 50 results at once.
top-headlines: categoryMappedsections: the outlet’s own section, or the start of the URL path.
content (full text)LimitedNever the full article: the standfirst, plus verbatim highlights in normal and deep.
apikey, X-Api-KeyMappedAuthorization: Bearer <key>
articles[]: title, url, description, publishedAt, source.nameMappedresults[]: title, url, snippet, published_at, source

What you gain

  • Pay as you go, with no daily quota to use up or lose at midnight UTC
  • A calibrated relevance probability on every result
  • Top results read and verified before they’re ranked (normal and deep)
  • Typed questions, tone and same-story grouping in the same call
  • A free credit that isn’t limited to non-commercial projects

When GNews is the better fit

We’d rather you pick right the first time. Keep GNews for these:

  • You need the full text of every article: GNews includes it on paid plans; we return short excerpts.
  • You need an archive back to 2020; our index keeps 30 days.
  • You use most of a large daily quota: at Business and Enterprise volumes GNews costs less per request.

The migration

The whole migration

Before and after: the request, the key header and the fields you read. Everything else in your code stays.

import requests
 
-r = requests.get("https://gnews.io/api/v4/search",
- headers={"X-Api-Key": GNEWS_API_KEY},
- params={"q": "lithium royalties in Chile", "from": "2026-09-18T00:00:00Z", "max": 20},
-).json()
+r = requests.post("https://api.typesearch.ai/v1/search",
+ headers={"Authorization": f"Bearer {TYPESEARCH_API_KEY}"},
+ json={"query": "lithium royalties in Chile", "days": 7, "max_results": 20, "mode": "fast"},
+).json()
 
-for a in r["articles"]:
- print(a["title"], a["url"], a["publishedAt"], a["source"]["name"])
+for a in r["results"]:
+ print(a["title"], a["url"], a["published_at"], a["source"], a["score"])
beforeafter

Switching from GNews

How is typesearch different from GNews?

GNews returns articles by keyword, sorted by date or relevance, with full text on paid plans. typesearch judges every result for your query — a calibrated probability, the top ones read — and adds typed answers, tone and same-story grouping.

How much does typesearch cost compared with GNews?

At the volume of GNews’s Essential plan (30,000 requests a month), typesearch costs $42 in fast mode, against €49.99. At the volume of GNews’s Business plan (150,000 requests a month), typesearch costs $210 in fast mode, against €99.99. At the volume of GNews’s Enterprise plan (750,000 requests a month), typesearch costs $1,050 in fast mode, against €249.99. Results served from the cache are free, and there are no seats or minimums.

How do I switch from GNews?

Rewrite one request: the endpoint, the key header and a few parameter names change — see the table above. The fields you read map one to one: description → snippet, publishedAt → published_at, source.name → source.

When should I stay with GNews?

If you need full article text, an archive back to 2020, or the lowest price per request at hundreds of thousands of requests a month. You can also use both: typesearch for what your agent searches now, GNews for the rest.

Switch from GNews

A key in a minute, $5 in free credit, one request to rewrite.