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

Compared with NewsAPI.org

vsNewsAPI.org

The NewsAPI.org alternative for AI agents

NewsAPI.org is built for listing articles; typesearch is built for agents that act on them: a calibrated relevance probability on every result, the top ones read before they’re ranked, and typed answers in the same call. Pay as you go, from $1.40 per 1,000 searches.

Checked Sep 25, 2026 · A news API with a 5-year archive

At the same volume

  • Business · 250,000 requests a month

    $350/ month

    typesearch, fast mode

    NewsAPI.org: $449−22%

    $1.80 per 1,000

  • Advanced · 2,000,000 requests a month

    $2,800/ month

    typesearch, fast mode

    NewsAPI.org: $1,74938% less on NewsAPI.org

    $0.87 per 1,000

One request returns up to 100 articles on NewsAPI.org and up to 50 judged results on typesearch. Their quotas are monthly, with overage at $0.0018 (Business) or $0.0009 (Advanced) per request; annual billing is 20% less. typesearch has no plan: the same price at any volume.

Checked Sep 25, 2026 · Sources: newsapi.org/pricing

Side by side

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

Side by sideNewsAPI.orgtypesearch
PricingMonthly plans: Business $449, Advanced $1,749; Enterprise on request Pay as you go, per search: $1.40 fast, $2.20 normal, $5.60 deep, per 1,000. No plan, no minimum
Free planDeveloper: 100 requests a day, 24-hour delay, development only — not for staging or production $5 in credit once, valid 30 days — not limited to development or testing
How far backUp to 5 years on paid plans; 1 month on the free plan A rolling 30-day window: built for what’s happening now
Coverage150,000+ sources, 55 countries, 14 languages (their figures) Sources in 130+ countries and 30+ languages; counts by country and language in GET /v1/sources
Full article textNo: content is truncated to 200 characters No: title, the outlet’s standfirst and short verbatim excerpts, always with the link
Per requestUp to 100 articles Up to 50 judged results; up to five queries per request
RankingSorted by relevancy, popularity or publication date A calibrated relevance probability per result; the top ones read and verified in normal and deep
EnrichmentExtra fields and clustering on Enterprise only Your own typed questions per result, tone, same-story grouping, who published first
Rate limitNot published 10 requests/second; 50 with a monthly plan
SDKsMostly community libraries (Node.js, Python, Ruby); C# is theirs OpenAPI 3.1; works with the official Exa, Tako and Perplexity SDKs
MCP serverNo official server Yes, remote: api.typesearch.ai/mcp

Checked Sep 25, 2026 · Sources: newsapi.org/pricing, newsapi.org/terms, newsapi.org, newsapi.org/docs/endpoints/everything

How the parameters map

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

NewsAPI.org parameterStatusOn typesearch
qSamequery. Or up to five queries, judged together.
searchInLimitedWe judge title and standfirst, and read the top articles in normal and deep.
domains, sourcesMappedinclude_domains, up to 20. A domain includes its subdomains.
excludeDomainsSameexclude_domains, up to 20.
from, toMappedpublished_after, published_before, within the last 30 days.
languageLimitedQuery in the language you want, or restrict to regional outlets with include_domains.
sortByLimitedRanked by a calibrated relevance probability; every result has published_at to sort by date.
pageSize, pageLimitedmax_results, up to 50. No pagination.
top-headlines: categoryMappedsections: the outlet’s own section, or the start of the URL path.
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: no $449 minimum, and a free credit you can use beyond development
  • A calibrated relevance probability on every result, instead of a sort order
  • Top results read and verified before they’re ranked (normal and deep)
  • Typed questions answered per result, tone and same-story grouping in the same call
  • Up to five queries per request, judged together

When NewsAPI.org is the better fit

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

  • You need years of archive: NewsAPI.org keeps up to 5 years; our index keeps 30 days.
  • You list 100 articles per request and filter them yourself.
  • You run 2 million requests a month: Advanced costs less per request than our fast mode.

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://newsapi.org/v2/everything",
- headers={"X-Api-Key": NEWSAPI_KEY},
- params={"q": "lithium royalties in Chile", "from": "2026-09-18", "pageSize": 20, "sortBy": "relevancy"},
-).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 NewsAPI.org

How is typesearch different from NewsAPI.org?

NewsAPI.org returns lists of articles sorted by relevancy, popularity or date. typesearch returns fewer, judged results: a calibrated probability on each, the top ones read and verified, and typed answers, tone and same-story grouping in the same call.

How much does typesearch cost compared with NewsAPI.org?

At the volume of NewsAPI.org’s Business plan (250,000 requests a month), typesearch costs $350 in fast mode, against $449. At the volume of NewsAPI.org’s Advanced plan (2,000,000 requests a month), typesearch costs $2,800 in fast mode, against $1,749. Results served from the cache are free, and there are no seats or minimums.

How do I switch from NewsAPI.org?

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 NewsAPI.org?

If you need years of archive, more than 50 results per request, or 2 million requests a month at the lowest price per request. You can also use both: typesearch for what your agent searches now, NewsAPI.org for the rest.

Switch from NewsAPI.org

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