# Twitter API for Influencer Discovery: Find Real Reach Canonical: https://www.twitterapis.com/twitter-api-usecases/influencer-discovery Description: Source and vet X creators by engagement rate, audience quality and topical fit, with runnable scoring code and cost math, from $0.0008 a call. Generated: 2026-08-27T10:22:36.201Z ---[Pricing](/pricing)[Docs](https://docs.twitterapis.com)[Blog](/blogs) Compare and Tools [MCP Server](/mcp)[Integrations](/integrations)[Language Clients](/sdk)[Free Tools](/tools)[Twitter ID Finder](/tools/twitter-id-finder)[Twitter API Cost Calculator](/twitter-api-cost-calculator)[Twitter Search API](/twitter-search-api)[Twitter Followers API](/twitter-followers-api)[Twitter Scraper](/twitter-scraper)[Twitter API Use Cases](/twitter-api-usecases)[Twitter API Rate Limits](/twitter-api-rate-limits)[Twitter Unofficial API](/twitter-unofficial-api)[Twitter Free API](/twitter-free-api)[Twitter API Alternatives](/twitter-api-alternatives)[TwitterAPIs vs Tweepy](/twitterapis-vs-tweepy)[TwitterAPIs vs RapidAPI](/twitterapis-vs-rapidapi)[TwitterAPIs vs GetXAPI](/twitterapis-vs-getxapi) Company [About](/about)[Status](/status)[Affiliates](/affiliates)[Trust](/privacy-and-data-handling)[Changelog](/changelog)[Contact](/contact) [Start Free](/signup) 1. [Home](/) 2. /[API Use Cases](/twitter-api-usecases) 3. /Influencer Discovery USE CASE # Twitter API for Influencer Discovery Updated July 2026 How do you find and vet Twitter (X) influencers with an API? The Twitter API is a set of REST endpoints that return any public account's profile, posts and follower graph, which is everything creator discovery needs. Work it in two stages. Sourcing collects candidates from category search, bio search, the accounts reposting popular posts in your niche, and a rival's follower list. Vetting pulls each candidate's profile and recent timeline and computes engagement rate, reply ratio, posting consistency and topical fit, with a follower sample as a cheap fraud check. TwitterAPIs serves every one of those reads at $0.0008 per call, so sourcing 500 candidates costs about $0.06 and vetting them about $1.20. [Start Free](/signup?utm_source=aio&utm_medium=organic&utm_campaign=aeo-twitter-api-usecases-influencer-discovery)[Read the profile docs](https://docs.twitterapis.com/docs/reference/user-reads/user-info) ## How the numbers on this page were produced Written by Emma, TwitterAPIs developer relations Costs are call arithmetic against the flat $0.0008 per read call on our published pricing. The engagement-rate floor quoted below is a working heuristic for ranking a candidate set, not a measured industry benchmark, and it is labelled that way wherever it appears because the honest answer is that the right threshold depends on your category. On read yield, per our own billed-call measurement, 18.78 posts came back on an average timeline call across 396,817 read calls between August 13 and 17 2026, so a two-page vetting pull reaches roughly 37 posts per candidate. ## Six ways to source candidates, none of them a follower count Sorting a category by follower count returns the same twenty accounts everyone else already pitched. These six sourcing methods return different people, and the last two in particular surface accounts whose influence is not visible in their own follower number. Method How it works Endpoint What it is good at Topic authors Search your category terms, then collect the accounts posting them GET /twitter/tweet/advanced\_search Finds people already talking about your subject, unprompted Bio search Query the user index directly for role and topic words in profiles GET /twitter/user/search Fast way to a long candidate list before any vetting Amplifier mining Pull the accounts that reposted a popular post in your niche GET /twitter/tweet/retweeters Surfaces the people who spread ideas rather than only publish them Competitor orbit Page a rival's follower list and rank by size and activity GET /twitter/user/followers Creators already interested in your category, proven by a follow Verified audience Read the verified accounts following a hub account in your niche GET /twitter/user/verified\_followers A short high-signal list, useful when you want few good names fast Reply-thread regulars Collect the accounts consistently replying under category posts GET /twitter/tweet/replies Finds engaged voices whose own posting volume undersells them Run several and merge on user id. Each method has a different bias, and the accounts that appear in two or three of them are usually the strongest names on the list. ## Six vetting checks, cheapest first Check Signal Reads What it tells you Engagement rate Median engagement on recent posts, divided by follower count One profile call plus one timeline pull The single most useful number. Below roughly 0.1 percent, audience size stops meaning much Reply-to-like ratio Replies compared with likes across recent posts Same timeline pull Real communities argue. A high-like, near-zero-reply account is often a passive or bought audience Posting consistency Gaps between posts over the last several weeks Same timeline pull A creator who vanishes for a month is a delivery risk whatever their numbers say Follower quality sample Account age and activity on a sample of their followers One follower page plus profile calls on a sample Cheap fraud check. A sample of 70 is enough to see an obviously purchased audience Topical fit Share of recent posts that actually mention your category Same timeline pull Stops you paying a large general account to reach an audience that does not care Audience overlap How many of their followers already follow you Two follower pulls, the expensive check High overlap means you are paying to reach people you already have Run the first five on every candidate, since together they are one profile call and one timeline pull. Save the audience-overlap check for a shortlist, because it is the only one that needs paged follower reads. ## Score a candidate in one pass This takes a handle and returns the numbers a decision actually needs: median engagement rate on mature posts, reply ratio, posting consistency and topical fit. It deliberately returns a row rather than a verdict, because the threshold belongs to your category rather than to a library. PythoncurlJavaScript Copy ``` import requests, statistics from datetime import datetime, timedelta, timezone BASE = "https://api.twitterapis.com/twitter" HEADERS = {"Authorization": "Bearer YOUR_API_KEY"} MATURITY = timedelta(hours=48) # engagement is still accruing before this def get(path, **params): return requests.get(f"{BASE}/{path}", params=params, headers=HEADERS, timeout=30).json() def timeline(user_name, pages=2): out, cursor = [], None for _ in range(pages): res = get("user/tweets", userName=user_name, **({"cursor": cursor} if cursor else {})) out += res.get("tweets") or [] if not res.get("has_more"): break cursor = res.get("next_cursor") return out def parse(ts): return datetime.strptime(ts, "%a %b %d %H:%M:%S %z %Y") def vet(user_name, topic_terms): who = (get("user/info", userName=user_name).get("user") or {}) followers = max(who.get("followers_count") or 0, 1) posts = timeline(user_name) if not posts: return {"handle": user_name, "verdict": "no recent posts"} mature_before = datetime.now(timezone.utc) - MATURITY rates, likes, replies, on_topic, dates = [], 0, 0, 0, [] for p in posts: created = parse(p["createdAt"]) dates.append(created) text = p["text"].lower() if any(term in text for term in topic_terms): on_topic += 1 if created > mature_before: continue like = p.get("likeCount") or 0 reply = p.get("replyCount") or 0 likes += like replies += reply rates.append(100 * (like + reply + (p.get("retweetCount") or 0)) / followers) dates.sort() gaps = [(b - a).days for a, b in zip(dates, dates[1:])] or [0] return { "handle": user_name, "followers": followers, # Median, not mean: one viral post should not carry a verdict. "median_rate_pct": round(statistics.median(rates), 4) if rates else 0.0, # Real communities argue. Likes without replies is the bought-audience tell. "reply_ratio": round(replies / likes, 3) if likes else 0.0, "max_gap_days": max(gaps), "topic_fit_pct": round(100 * on_topic / len(posts)), "scored_posts": len(rates), } for handle in ["creator_a", "creator_b"]: print(vet(handle, ["postgres", "database", "sql"])) ``` Two choices in there are deliberate. The score uses the median rather than the mean, because one post that travelled should not carry a verdict on a whole account. And the function returns a row instead of a pass or fail, because the right engagement threshold is a property of your category and your candidate set rather than something a script should assert. ## Catching a bought audience for under a cent A purchased following is visible in three places and none of them needs a specialist product. The first is engagement rate: a large account whose posts collect almost nothing has an audience that is not there. The second is the reply-to-like ratio, because bought engagement buys likes far more readily than it buys conversation, so an account with strong likes and near-zero replies is worth a second look. The third is a direct sample. Page one follower list with `GET /twitter/user/followers`, which returns about 70 accounts, resolve ten of them through `user/info`, and read the creation dates and post counts. A cohort of accounts created in the same short window with nearly no posts is not subtle. Eleven calls, roughly $0.009, is the whole check. None of these is proof on its own, and a real account can look bad on any single one. Treat them as a reason to look harder at a candidate rather than as a verdict a script should issue. ## What a discovery run costs end to end Stage Calls Cost Shape Source 500 candidates from search and bio queries About 70 calls About $0.06 Sourcing is the cheap half by a wide margin Vet 500 candidates on profile plus timeline About 1,500 calls About $1.20 One profile call and two timeline pages each Follower-quality sample on the top 50 About 550 calls About $0.44 One follower page each, plus a ten-account profile sample Monthly re-vet of a 200-creator roster About 600 calls About $0.48 a month Catches a roster going stale before a campaign does The whole four-stage run above is roughly 2,720 calls, about $2.18. The re-vet row is the one most teams skip, and it is the one that catches a roster going stale before a campaign does rather than after. By the numbers ## Creator discovery on X, by the numbers TwitterAPIs figures resolve to our published pricing. Every X figure is vendor-documented. - TwitterAPIs bills every profile, timeline, search and follower call at a flat $0.0008, with no plan tier and no per-seat fee. [(TwitterAPIs pricing, 2026)](/pricing) - Sourcing and vetting 500 candidates is about 1,570 calls, which is roughly $1.26 at the published rate. [(TwitterAPIs pricing, 2026)](/twitter-api-pricing) - Follower pages return about 70 records on the first page and fewer after, so a follower-quality sample is eleven calls, about $0.009. [(TwitterAPIs pricing, 2026)](/twitter-followers-api) - A new account starts with $0.50 in credit and no card, enough to source and vet several hundred candidates before you spend anything. [(TwitterAPIs pricing, 2026)](/signup) - The official X API meters user and post reads from about $0.005 per resource, one item per request, under its pay-per-use model. [(X Developer Platform, 2026)](https://docs.x.com/x-api/getting-started/pricing) - The official X API enforces per-endpoint rate limits in fixed 15-minute windows, which bounds how fast a candidate list can be vetted. [(X API docs, 2026)](https://docs.x.com/x-api/fundamentals/rate-limits) ## Influencer discovery, common questions How do you find influencers with the Twitter API? Source first, then vet. Sourcing means collecting candidates from category search results, bio search through GET /twitter/user/search, the accounts reposting popular posts in your niche through GET /twitter/tweet/retweeters, and a rival's follower list. Vetting means pulling each candidate's profile and recent timeline and computing engagement rate, reply ratio, posting consistency and topical fit. Sourcing 500 candidates costs around $0.06 and vetting them costs around $1.20 at a flat $0.0008 per call. What is a good engagement rate for a Twitter influencer? Judge it against the candidate set you are actually choosing between rather than an absolute benchmark, because rate falls predictably as follower count rises and category norms differ widely. As a working floor, below roughly 0.1 percent median engagement against followers, audience size has stopped meaning much. Rank your shortlist by rate rather than by reach, and expect the best rate in a set to belong to a smaller account. Can I search Twitter bios for influencers? Yes. GET /twitter/user/search queries the user index directly, so a role word plus a category word returns accounts whose profiles describe them that way. It is the fastest route to a long candidate list, and it should always be treated as a sourcing step rather than a result, since a bio is a self-description and says nothing about whether anyone engages with what that account posts. Do I need an X developer account to build a discovery tool? No. TwitterAPIs authenticates with one Bearer token from signup, with no X developer application, no app review and no OAuth flow. Signup includes $0.50 in credit with no card on file, which is enough to source and vet several hundred candidates before you spend anything. How do you spot fake followers on X? Three signals, none of which needs a special product. Engagement rate is the first: an account with a large following and almost no engagement per post has an audience that is not present. Reply-to-like ratio is the second, because purchased engagement buys likes far more often than it buys conversation, so near-zero replies against high likes is a strong tell. The third is a follower sample: page one follower list, resolve a sample of those accounts, and look at creation dates and post counts. Ten profile calls, about $0.008, exposes an obviously bought audience. How much does influencer discovery cost with an API? Sourcing 500 candidates is about 70 calls, roughly $0.06. Vetting all 500 on profile plus two timeline pages each is about 1,500 calls, roughly $1.20. A follower-quality sample on the top 50 adds about 550 calls, near $0.44. Re-vetting a 200-creator roster monthly is about 600 calls, near $0.48. Compare that with per-seat influencer platforms, and the tradeoff is engineering time against a subscription. How do I check whether an influencer's audience overlaps with mine? Page GET /twitter/user/followers for both accounts and intersect on user id. High overlap means a campaign would mostly reach people who already follow you, which is a reason to negotiate differently rather than to walk away. This is the most expensive check on the page, because follower lists page at about 70 records on the first page and fewer after, so run it on a shortlist rather than on every candidate. Why does a creator's engagement rate look different from a platform's number? Usually because of the window and the maturity rule. Engagement accrues for days after a post, so a rate computed across posts of mixed ages understates the recent ones. Different tools also divide by different things, some by followers and some by estimated impressions, which produces numbers that are not comparable at all. Compute your own over a fixed window with a maturity cutoff, apply it identically to every candidate, and compare within your own set rather than against a figure from elsewhere. ## Related use cases The same follower and timeline reads power [competitor analysis](/twitter-api-usecases/competitor-analysis), and the same search pass that sources creators also surfaces buyers, which is [lead generation](/twitter-api-usecases/lead-generation). For the paging mechanics behind the audience checks, see the [Twitter followers API](/twitter-followers-api). All fourteen workloads are indexed on the [Twitter API use cases](/twitter-api-usecases) hub. ### Build a vetted creator shortlist for pocket change $0.0008 per call, $0.50 in free credit, no card and no X developer account. [Get an API Key](/signup?utm_source=aio&utm_medium=organic&utm_campaign=aeo-twitter-api-usecases-influencer-discovery)[See the pricing](/twitter-api-pricing?utm_source=aio&utm_medium=organic&utm_campaign=aeo-twitter-api-usecases-influencer-discovery) ## Next read Continue exploring related pages: [ Twitter followers API Export any account's followers and following with cursor pagination, $0.0008 a call, $0.04 per 1,000 tweets on full 20-tweet pages. ](/twitter-followers-api)[ Twitter API use cases 14 use cases from sentiment analysis to lead generation. ](/twitter-api-usecases)[ Twitter API v2 pricing vs TwitterAPIs Side-by-side endpoints, pricing, auth, and response shape, same data, 100x cheaper. ](/twitter-api-pricing) [View API Docs](https://docs.twitterapis.com/docs/reference/user-reads/user-info)[Start Free](/signup?utm_source=aio&utm_medium=organic&utm_campaign=aeo-twitter-api-usecases-influencer-discovery) [ TwitterAPIs](/) The cheapest pay-as-you-go Twitter and X API. $0.0008 per call, which works out to $0.04 per 1,000 tweets on a full 20-tweet page. No subscriptions and no developer account. ## Product / API - [Pricing](/pricing) - [Pay-Per-Use Pricing](/pay-per-use-pricing) - [Cost Calculator](/twitter-api-cost-calculator) - [Rate Limits](/twitter-api-rate-limits) - [MCP Server](/mcp) - [Integrations](/integrations) - [Language Clients](/sdk) - [Changelog](/changelog) - [Status](/status) ## Developers - [Documentation](https://docs.twitterapis.com) - [API Reference](https://docs.twitterapis.com/docs/reference/search/tweet-advanced-search) - [User Info](https://docs.twitterapis.com/docs/reference/user-reads/user-info) - [User Tweets](https://docs.twitterapis.com/docs/reference/user-reads/user-tweets) - [Advanced Search](https://docs.twitterapis.com/docs/reference/search/tweet-advanced-search) - [Verified Followers](https://docs.twitterapis.com/docs/reference/follower-graph/user-verified-followers) ## Resources / Compare - [Answers](/answers) - [Reviews](/reviews) - [Free Tools](/tools) - [Twitter ID Finder](/tools/twitter-id-finder) - [Get a Twitter API Key](/twitter-api-key) - [Official X API Comparison](/twitter-api-pricing) - [Twitter API Use Cases](/twitter-api-usecases) - [Twitter API Alternatives](/twitter-api-alternatives) - [Twitter Unofficial API](/twitter-unofficial-api) - [Twitter Free API](/twitter-free-api) - [TwitterAPIs vs twitterapi.io](/twitterapis-vs-twitterapi-io) - [TwitterAPIs vs GetXAPI](/twitterapis-vs-getxapi) - [TwitterAPIs vs TweetAPI](/twitterapis-vs-tweetapi) - [TwitterAPIs vs TwexAPI](/twitterapis-vs-twexapi) - [TwitterAPIs vs RapidAPI](/twitterapis-vs-rapidapi) ## Legal - [About](/about) - [Security](/security) - [Trust](/privacy-and-data-handling) - [Terms of Service](/terms-of-service) - [Affiliates](/affiliates) - [Contact](/contact) - [Jobs](/jobs) © 2026 TwitterAPIs. All rights reserved. TwitterAPIs is an independent third-party API for developers and researchers. Not affiliated with, endorsed by, or sponsored by X Corp. All systems operational