X-Alpha โ€บ How to see who someone recently followed on X

๐Ÿ“˜ Guide ยท updated September 2, 2026

How to see who someone
recently followed on X

X will not tell you when another account follows someone new. There is no setting for it, no notification type, and no timestamp on a follow. Here is what actually works, what every “recent follows” tool is really doing underneath, and where each method breaks.

The short answer

If the account is public, open x.com/<handle>/following โ€” the accounts near the top are usually the most recent follows. That is as far as X itself will take you. To know exactly what is new, or to be told the moment it happens, you have to save a copy of that list and compare it to the next one.

Can you see the list?Yes for public accounts, no for protected ones
Is it in date order?Roughly newest-first, but not guaranteed and reshuffled between requests
Are there follow timestamps?No. X publishes none, in the app or the API
Will X notify you?No. The follow activity feed was removed years ago
What actually worksSnapshot the list, re-fetch it later, diff the two

Method 1: check the Following tab by hand

The free method, and the right one if you only care about one account and do not mind checking in occasionally.

1
Open the profile at x.com/<handle>.
2
Tap the Following count under the bio to open x.com/<handle>/following. If nothing loads, the account is protected and the list is not public.
3
Copy the top 30–50 handles into a note. That is your baseline.
4
Come back later and compare. Anything present now that was not in your baseline is a new follow.

Where this breaks

  • The order is not trustworthy. Newest follows usually surface near the top, but X reshuffles the list between requests โ€” fetch it twice in a row and the order can differ. Judging “new” by position alone produces both missed follows and false ones.
  • There is no timestamp. You can tell that someone is newly followed, never when. The only clock you get is your own: the gap between your two checks.
  • It does not scale. One account is fine. Ten accounts checked hourly is a part-time job, and the follows worth catching are usually the ones that happened while you were asleep.
  • Heavy followers hide the change. An account following 15,000 others buries a single new follow in a list you cannot eyeball.

Method 2: waiting for a notification (this does not exist)

Worth stating plainly, because a lot of guides imply otherwise: X has no feature that notifies you when someone else follows a new account. Notification settings cover activity directed at you โ€” your followers, your mentions, your replies. There is no toggle for another account's outbound follows, no notification type for it, and the old activity feed that came closest was retired long ago.

The X API does not fill the gap either. It can return who an account follows right now; it will not tell you which of those are new, and it attaches no date to any of them. Any product that appears to push you follow alerts is polling that list on a schedule and comparing snapshots.

Method 3: snapshot and diff (what trackers actually do)

Since X exposes no timestamps and sends no notifications, there is exactly one mechanism available, and every tool in this category uses it:

  1. Fetch the account's full following list and store it.
  2. Fetch it again later.
  3. Anything in the new list that was not in the old one is a follow. Anything missing is an unfollow.
  4. Push the difference to you, and make the new list the baseline.

Everything that distinguishes one tracker from another falls out of step 2: how often it re-checks. The gap between fetches is your worst-case delay. A tool that scans daily can be up to 24 hours behind. Latency is the entire product.

Two details that trip up homemade versions

Reshuffling. Because X returns the list in an unstable order, a scanner that reads only the first page and assumes it is chronological will both miss real follows and invent fake ones. A correct diff compares the full set, not the top slice.

Churn. If an account follows someone and unfollows someone else between two checks, the follow count is unchanged โ€” so anything watching only the count sees nothing happen. This is why counter-based tools quietly miss follows, and why the comparison has to be over the membership of the list rather than its size.

The signal most people are actually after

One account following someone new is close to meaningless. People follow things constantly and for no reason.

What carries information is convergence: several accounts you already consider well-informed following the same new account inside a short window. Independent people arriving at the same conclusion at the same time is a much harder thing to explain away than any single follow.

That is the pattern ๐Ÿ”ฅ hot alerts in X-Alpha are built around โ€” when 2 or more of the accounts you track follow the same new account, that arrives as its own separate alert rather than being buried in the stream.

Unfollows are worth watching too. They are quieter and often more informative: nobody announces one, and a deliberate unfollow after a long-standing follow tends to mean something specific.

Doing it automatically with X-Alpha

X-Alpha is the snapshot-and-diff method run continuously and delivered to Telegram. You send @xalphafollowing_bot the handles you want watched; it re-checks each one about every 10 seconds around the clock, and the alert usually reaches you within about 5 seconds of the follow.

DeliveryTelegram. No X login, no API key, nothing to install.
Check interval~10 seconds per tracked account, continuously
Typical alert latency~5 seconds from the follow
Follows and unfollowsBoth. Unfollow alerts are free on every plan and on by default.
๐Ÿ”ฅ Hot alertsA separate alert when 2+ of your tracked accounts follow the same new account
Also includedDaily digest pinned at 9 AM EST, weekly recap, profile/bio/avatar change alerts, overlap finder
Price$30/mo for 5 accounts, up to $225/mo for 40. Crypto only โ€” no card, no KYC. No free tier.

FAQ

Can you see who someone recently followed on X?

Yes if the account is public, but only approximately. x.com/<handle>/following lists who they follow in roughly newest-first order. Because X publishes no follow timestamps and does not guarantee that ordering, the only exact way to know what is new is to compare the list against an earlier copy.

Does X notify you when someone you follow follows a new account?

No. There is no setting, no notification type, and no API field for it. Every tool offering this is polling the following list on a schedule and diffing the results.

Is the Following tab in chronological order?

Approximately, not reliably. Newest follows generally appear near the top, but X reshuffles the order between requests, so the same list fetched twice can come back differently. That is why position alone is not a safe signal.

How do I get alerted the moment a specific account follows someone?

Use a tracker that snapshots and diffs on a tight interval. X-Alpha re-checks each tracked account about every 10 seconds and pushes the alert to Telegram, typically within about 5 seconds of the follow. Plans start at $30/mo for 5 accounts.

Can you see who a private account follows?

Only if they have approved you as a follower, and even then no third-party tool can track it. A protected account's following list is not publicly readable, so there is nothing to snapshot.

Is it legal to track who someone follows?

A public account's following list is information X shows to anyone who opens the profile. Tracking is doing that on a schedule and remembering the previous answer. It involves no login to the tracked account and reveals nothing a visitor could not already see.

Why did my follow alert arrive late?

Scan time scales with how many accounts the tracked profile follows. A profile following a few hundred accounts is read almost instantly; one following tens of thousands takes materially longer, so alerts on those can lag.