A creator with a million followers and dead engagement is a money pit for brands. Before you pay for a collab, you need to know whether an audience is real. Here are the red flags — and how to check any account fast.
Followers can be bought; genuine attention can't. If a chunk of an audience is bots or inactive accounts, your sponsored post reaches far fewer real people than the follower count implies. The result is wasted budget and inflated CPMs. A two-minute quality check protects your spend.
Engagement rate naturally falls as accounts grow, so always compare within a tier. Rough healthy ranges (engagement by followers):
An account sitting far below its tier's floor is the clearest warning sign.
Our free Fake Follower Checker does this analysis automatically: enter any @handle and it scores audience quality from 0–100 by comparing engagement to the expected band for that follower tier, weighing the follow ratio, and flagging specific red flags.
Screening a list of creators? Compute the same signals programmatically with a free API key:
import requests
BASE = "https://tik.socialholmes.com/api/v1"
headers = {"Authorization": "Bearer YOUR_API_KEY"}
info = requests.get(f"{BASE}/user/info",
headers=headers, params={"unique_id": "addisonre"}).json()["data"]
posts = requests.get(f"{BASE}/user/posts",
headers=headers, params={"unique_id": "addisonre", "count": 30}
).json()["data"]["videos"]
followers = info["stats"]["followerCount"]
n = len(posts)
interactions = sum(p["digg_count"] + p["comment_count"] + p["share_count"] for p in posts) / n
er_followers = interactions / followers * 100
print(f"Engagement by followers: {round(er_followers, 2)}%")
Wire this into your influencer-vetting workflow to flag risky accounts before money changes hands. See the API docs for every field.
100 requests/day free. No credit card required. Instant API key.
Get your free API keyWe currently support TikTok. Which platforms would you like us to add?
Thanks! Your feedback helps us build the right thing next.