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

Compared with APITube

vsAPITube

The APITube alternative for AI agents

APITube sells large pages of articles with dozens of filters. 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 — from $1.40 per 1,000 searches, pay as you go.

Checked Sep 25, 2026 · A low-cost news API with many filters

At the same volume

  • Starter · 10,000 requests a month

    $14/ month

    typesearch, fast mode

    APITube: $29−51%

    $2.90 per 1,000

  • Basic · 50,000 requests a month

    $70/ month

    typesearch, fast mode

    APITube: $99−29%

    $1.98 per 1,000

  • Professional · 150,000 requests a month

    $210/ month

    typesearch, fast mode

    APITube: $1996% less on APITube

    $1.33 per 1,000

One request returns up to 50, 200 or 250 articles by plan on APITube, and up to 50 judged results on typesearch. APITube also sells pay as you go at $0.01 per request, and doesn’t charge searches with no results; unused credits roll over on paid plans.

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

Side by side

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

Side by sideAPITubetypesearch
PricingMonthly plans $29 to $199, or pay as you go at $0.01 per request 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, 12-hour delay, 10 articles each; development and testing only $5 in credit once, valid 30 days — not limited to development or testing
How far backStated differently across their pages (365 days vs 10+ years); keyword search limited to a 31-day window A rolling 30-day window: built for what’s happening now
Coverage300,000+ sources, 177 countries, 59 languages (their figures) 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 request50 to 250 articles, by plan Up to 50 judged results; up to five queries per request
RankingSorted by publication date by default A calibrated relevance probability per result; the top ones read and verified in normal and deep
EnrichmentSentiment, entities, categories; trends and fact-check on paid plans Your own typed questions per result, tone, same-story grouping, who published first
Rate limit50 requests/minute on paid plans 10 requests/second; 50 with a monthly plan
SDKsNode, PHP and Python OpenAPI 3.1; works with the official Exa, Tako and Perplexity SDKs
MCP serverYes, remote, on paid plans Yes, remote: api.typesearch.ai/mcp

Checked Sep 25, 2026 · Sources: apitube.io/pricing, apitube.io/terms/terms-of-service, docs.apitube.io/platform/news-api/rate-limits, apitube.io

How the parameters map

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

APITube parameterStatusOn typesearch
title, queryMappedquery. Or up to five queries, judged together.
published_at.start, published_at.endMappedpublished_after, published_before, within the last 30 days.
source.domainMappedinclude_domains, up to 20.
language.code, source.country.codeLimitedQuery in the language you want, or restrict to regional outlets with include_domains.
category.id, topic.idLimitedsections, or name the topic in the query.
sentiment.overall.polarityMappedtone: true — positive, neutral or negative toward your query.
is_duplicateMappeddedupe: true groups the same story, with the duplicates attached.
sort.by, per_page, pageLimitedRanked by relevance; max_results up to 50; no pagination.
X-API-KeyMappedAuthorization: Bearer <key>
results[]: title, href, description, published_at, source.domainMappedresults[]: title, url, snippet, published_at, source

What you gain

  • A calibrated relevance probability on every result, instead of a date sort
  • Top results read and verified before they’re ranked (normal and deep)
  • Your own typed questions answered per article
  • A free credit usable beyond development and testing
  • Pay as you go at $1.40 per 1,000 searches, against $10 per 1,000 on their pay as you go

When APITube is the better fit

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

  • You need the full text of every article.
  • You pull 200+ articles per request and filter them with structured fields.
  • You use most of the Professional plan: at 150,000 requests a month it 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://api.apitube.io/v1/news/everything",
- headers={"X-API-Key": APITUBE_API_KEY},
- params={"title": "lithium royalties in Chile", "published_at.start": "2026-09-18", "per_page": 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["results"]:
- print(a["title"], a["href"], a["published_at"], a["source"]["domain"])
+for a in r["results"]:
+ print(a["title"], a["url"], a["published_at"], a["source"], a["score"])
beforeafter

Switching from APITube

How is typesearch different from APITube?

APITube returns up to 250 articles per request with sentiment, entities and 65+ filters, sorted by date. typesearch returns fewer, judged results: a calibrated probability on each, the top ones read, and your own typed questions answered per article.

How much does typesearch cost compared with APITube?

At the volume of APITube’s Starter plan (10,000 requests a month), typesearch costs $14 in fast mode, against $29. At the volume of APITube’s Basic plan (50,000 requests a month), typesearch costs $70 in fast mode, against $99. At the volume of APITube’s Professional plan (150,000 requests a month), typesearch costs $210 in fast mode, against $199. Results served from the cache are free, and there are no seats or minimums.

How do I switch from APITube?

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: href → url, description → snippet, published_at → published_at, source.domain → source.

When should I stay with APITube?

If you need full article text, up to 250 articles per request, or dozens of structured filters. You can also use both: typesearch for what your agent searches now, APITube for the rest.

Switch from APITube

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