Skip to content

SEARCH

The Twitter Search API at $0.04 per 1,000 Tweets

Updated July 2026

TwitterAPIs ships a Twitter/X search API that hits the live firehose, takes the full advanced-search operator set, and returns clean JSON for $0.04 per 1,000 tweets. Filter by handle, keyword, date window, language, or a minimum engagement bar, all in real time, with no developer account and no throttles.

We bill each search call at $0.0008 (source: our published pricing), and one call returns about 20 tweets, so a full 1,000-tweet pull lands near $0.04.

Why reach for a Twitter search API

Typing a query into the X web app is fine for a one-off. The trouble starts the moment search has to live inside a product, a dashboard, an alert pipeline, or an AI agent, where you need it as a callable endpoint. The official X API does ship search, and it is the sanctioned channel, yet the price and the gatekeeping shut a lot of teams out:

  • Price plus a standing monthly floor. Sanctioned search reads land around $5 per 1,000 inside a paid tier, so even a light monitoring job owes a recurring monthly minimum before a single tweet comes back.
  • Sign-off and tier ceilings. First you request a developer account and wait on review, then you meet hard read ceilings and a short lookback on the lower tiers. The throttle decides your ceiling, not your code.
  • Roll your own and watch it crack. Free libraries that scrape X internals collect IP bans and snap the next time the site shifts, so you swap a monthly invoice for proxy churn and endless patching.

TwitterAPIs sits in the managed middle. One Bearer key, one documented search endpoint, structured JSON in return, and $0.04 per 1,000 tweets with no monthly floor and no throttle ceilings. You send a query, matching tweets come back, and none of the plumbing underneath is yours to babysit.

Inside the search endpoint

Everything routes through a single endpoint, GET /twitter/tweet/advanced_search. Put your query in the q parameter, set a product ranking, and step through pages using cursor. A call costs $0.0008 and brings back about 20 tweets.

ParameterRequiredPurpose
qRequiredYour search string. Takes every operator the X advanced-search box understands, such as from:elonmusk min_faves:500 since:2026-01-01.
productOptionalChoose Latest for a newest-first live stream, or Top for the highest-engagement matches. Falls back to Latest when you leave it unset.
cursorOptionalPaging marker handed back on every response. Send it on the next request to walk forward until it comes back empty.

One request, matching tweets

1curl -H "Authorization: Bearer YOUR_API_KEY" \
2 "https://api.twitterapis.com/twitter/tweet/advanced_search?query=from:elonmusk&product=Latest"

What comes back is structured JSON plus a cursor for the next page, so there is no markup to scrape and no proxy pool to keep rotating. See the advanced search endpoint docs.

Operators you can hand the q parameter

OperatorMatchesExample
from:usernamePosts authored by a single handlefrom:elonmusk
to:usernameReplies aimed at a given handleto:nasa
filter:verifiedRestricts results to verified authorsai agents filter:verified
min_faves:NPosts holding N or more likessolana min_faves:1000
min_retweets:NPosts holding N or more repostslaunch min_retweets:50
since: / until:Bounds a date range (YYYY-MM-DD)nvda since:2026-01-01 until:2026-03-01
lang:xxPosts written in a single languagemundial lang:es
geocode:lat,long,rPosts within a radius of a coordinateprotest geocode:40.7,-74,10km

Stack several operators into the same query, for instance from:elonmusk min_faves:500 since:2026-01-01. The Twitter advanced search operators guide covers the full set, combination recipes, and the corner cases. For the date operators on their own, including why an end bound excludes its own day, see how to search tweets by date.

The product parameter: Latest vs Top

productReturnsBest forFreshness
LatestNewest-first, reverse chronologicalAlerting, live dashboards, streaming ingestionSeconds-fresh, straight off the timeline
TopHighest-engagement matches firstDigests, highlight pulls, sentiment rollupsRecent set, weighted by likes plus reposts

Skip the parameter entirely and the endpoint assumes Latest. Reach for Top when the most-engaged tweets for a query matter more than the freshest ones.

How TwitterAPIs search stacks up against the alternatives

OptionPriceAuthRate limitsReal-time
TwitterAPIs$0.04 / 1,000 tweetsBearer token, sign up in 30sNo throttlesLatest plus Top, seconds-fresh
Official X API search$5+ / 1,000 reads, $200/mo floorDeveloper account plus app reviewPer-tier monthly read ceilingsRecent search only, 7-day lookback on cheaper tiers
RapidAPI Twitter search wrappers$0.20 to $0.50 / 1,000Per-provider RapidAPI keyThrottled by plan quotaProvider-dependent
Free libraries (twscrape, twikit)$0 before proxy and server costScraped cookies or tokensIPs banned in hoursSnaps on each X update

Flat, readable pricing

$0.04

to search 1,000 tweets

$0.50

in signup credits, no card

$0

monthly fee, billing is per call

A search call costs $0.0008 and returns close to 20 tweets, so 1,000 tweets settles around $0.04. The full breakdown sits on the Twitter API pricing page, and you can project a monthly bill with the Twitter API cost calculator.

Go deeper on any single tweet

Search hands you matching tweets and their IDs. Once you hold a tweet ID, three read endpoints expand it into the full picture, all on the same Bearer key at $0.0008 per call. Pass the ID you already have, and structured JSON comes back with no extra auth step.

EndpointReturnsReach for it when
GET /twitter/tweet/detailThe full tweet object for one ID: text, author, counts, and attached media.You have an ID from a link or a webhook and need the whole record, not a truncated card.
GET /twitter/tweet/repliesThe reply thread under a tweet, paged by cursor until it comes back empty.You track how a post is received, or pull a conversation for sentiment and support triage.
GET /twitter/tweet/retweetersThe accounts that reposted a tweet, each as a profile you can page through.You map who amplified a post, or score the reach behind a spike in engagement.

A common pattern is one search call to find the tweets that matter, then a detail, replies, or retweeters call on each ID to expand the ones worth a closer look. Both steps bill at the same flat rate, so a deep read on a handful of tweets stays well under a cent.

Read what is trending, worldwide or by location

Search answers what people are posting about a query. Trends answers the other direction: what X itself is surfacing right now. Two read endpoints cover it at $0.0008 per call. Call trends locations first to resolve a city or country to its WOEID, then pass that WOEID to trends for the live list in that place.

1# 1. Find the WOEID for a place
2curl -H "Authorization: Bearer YOUR_API_KEY" \
3 "https://api.twitterapis.com/twitter/trends/locations"
4
5# 2. Read the live trend list for that WOEID (1 = worldwide)
6curl -H "Authorization: Bearer YOUR_API_KEY" \
7 "https://api.twitterapis.com/twitter/trends?woeid=1"

That pairing drives trend dashboards, timing calls for a launch, and regional monitoring where a topic breaks in one country before it travels. No developer account, no throttle window, same key as every other read.

When search alone is not enough

This is a single endpoint. Need entire timelines, follower lists, and profiles on top of it? The broader Twitter scraper reaches that wider surface on the very same key. Wiring search into an AI agent instead? Point it at the MCP server. Still weighing vendors? Line up the full slate of Twitter API alternatives and compare them head to head.

By the numbers

Twitter search, in numbers.

Sourced figures behind live search costs.

  • The official X API full-archive search enforces a hard 1 request per second floor on top of a 300 per 15-minute window. (X API docs, 2026)

  • The official X API bills post reads pay-per-use at $0.005 per resource, and search results count against that read cost. (X Developer Platform, 2026)

  • Official X API pay-per-use is hard-capped at 2 million post reads per calendar month before Enterprise pricing applies. (X API docs, 2026)

  • TwitterAPIs advanced search returns about 20 tweets per call at $0.0008, which is $0.04 per 1,000 tweets, with no rate cap. (TwitterAPIs pricing, 2026)

  • A new TwitterAPIs account starts with $0.50 in free search credit, roughly 12,500 tweets, and needs no developer account. (TwitterAPIs pricing, 2026)

Twitter search API, common questions

Each advanced_search call runs $0.0008 and hands back roughly 20 tweets, which puts 1,000 tweets at about $0.04. Nothing is billed as a subscription and there is no spend minimum. Compare that to the official X API, where search reads open at $5 per 1,000 on top of a $200 monthly floor, and TwitterAPIs is the cheaper managed route to search at volume. New accounts get $0.50 in credits up front, with no card needed to begin.

There is no X developer account to apply for and no OAuth flow to wire up. The one thing you need is a TwitterAPIs Bearer token, copied straight after a 30-second signup, and it signs every search request. Skip the app review, the per-endpoint sign-off, and the waiting list, and your first query can run inside a minute.

Nothing caps the endpoint per minute or per day. Billing is purely per call at $0.0008, so your spend tracks usage instead of bumping a tier ceiling. Scheduled firehose pulls and full date-range backfills run without tripping the throttles baked into the official X API search tiers.

Every response carries a cursor value. Feed that value into the cursor parameter on the following call to pull the next page, and keep going until the cursor comes back empty. You can sweep an entire query or date window this way without the server holding any session state for you.

It does. Pass product set to Latest and advanced_search streams a newest-first feed of posts that are only seconds old, which is exactly what alerting and live monitoring need. Pass product set to Top instead and you receive the highest-engagement matches for the same query. Either mode reads the live X index rather than a cached snapshot.

All of the familiar ones. Drop from:, to:, filter:verified, min_faves:, min_retweets:, since:, until:, lang:, and geocode: into the q parameter, mix them freely in one string such as from:elonmusk min_faves:500 since:2026-01-01, and the endpoint honors the combination. The Twitter advanced search operators guide carries the complete list with worked recipes.

Ranking is the only thing the product parameter changes. Latest hands you matches newest-first in reverse-chronological order, the right call for live monitoring. Top reorders those same matches by engagement, strongest first, which fits highlight feeds and sentiment digests. Leave the parameter off and Latest is assumed.

Think of search as the targeted query endpoint: you pass operators and get matching posts. The wider Twitter scraper layers full timelines, followers, profiles, and media on top of that search surface. The same Bearer key and the same flat $0.0008 per call power both. Reach for this endpoint when a query is all you need, and step up to the scraper when you want complete account data.

Search X with no X account

$0.04 per 1,000 tweets, $0.50 in free credits, Latest and Top ranking, no developer account, no throttles.