Skip to main content
← Back to blog
by Data Team
cryptokolresearch

Top Crypto VC Accounts to Follow on X in 2026 (Ranked by Follow Graph)

Follower Count Is the Wrong Ranking

Every "top crypto VCs on Twitter" list you have read sorts by follower count. That number tells you how far someone shouts, not whether the industry listens. A fund with 1M followers bought over three years and a fund with 200K followers that includes half the founders in the space are not remotely equivalent, and the follower column cannot tell them apart.

So we ranked differently. For every account below we counted how many already-notable crypto accounts follow them, using a reference set of roughly 88,000 scored accounts (funds, protocols, founders, established KOLs). The question it answers is simple: when this account follows something new, how much of crypto is downstream of that decision?

The Ranking

#AccountNotable followersTotal followers
1[@davidsacks](https://x.com/davidsacks)4,3281.6M
2[@cdixon](https://x.com/cdixon)4,354933K
3[@mert](https://x.com/mert)4,2771.4M
4[@chamath](https://x.com/chamath)3,7952.2M
5[@gakonst](https://x.com/gakonst)3,917189K
6[@a16z](https://x.com/a16z)3,6411.0M
7[@mdudas](https://x.com/mdudas)3,5411.2M
8[@cburniske](https://x.com/cburniske)3,334337K
9[@kylesamani](https://x.com/kylesamani)3,197221K
10[@bgurley](https://x.com/bgurley)2,953770K
11[@eriktorenberg](https://x.com/eriktorenberg)2,796158K
12[@rleshner](https://x.com/rleshner)2,7181.2M
13[@paradigm](https://x.com/paradigm)2,7651.0M
14[@lindaxie](https://x.com/lindaxie)2,595169K
15[@arthur0x](https://x.com/arthur0x)2,541210K

Two things jump out.

Reach and standing come apart fast. @gakonst has 189K followers, a fraction of Chamath's 2.2M, yet more notable accounts follow him. Paradigm's research lead is followed by more of crypto than most consumer-scale accounts are. If you are trying to work out who moves opinion inside the industry, the small-follower names in this list matter more than the large ones.

The fund brand account is not the fund's real account. @a16z sits at 3,641, but @cdixon personally sits higher. Institutional handles post announcements. Partners post opinions, and the graph follows opinions. If you monitor only the fund handles, you are watching the press release feed and missing the actual signal.

What to Do With the List

Following these accounts is the obvious move and the least valuable one. The useful version is watching what they follow, because a fund following a project it has not announced is the earliest public trace of interest that exists. Funding rounds leak on X weeks before the press release, and they leak as follows, not as posts.

Three ways to work it:

1. Track new follows, not new posts

Snapshot each account's following list, diff it daily, and alert on additions. When four of the accounts above follow the same new project inside a week, that cluster is worth a look regardless of what the project has announced.

2. Weight the signal by who moved

One fund following something is noise. The signal is consensus. Weight each follow by the standing of the follower, exactly as the ranking above does, and the noise drops away.

3. Watch unfollows too

Unfollows are rarer and louder. A fund quietly dropping a portfolio-adjacent account after a bad quarter is a signal almost nobody tracks, precisely because it never appears in a feed.

Doing This With an API

All of it comes down to reading following lists on a schedule and diffing them. With the XCROP API that is two calls:

BASH
# 1. Resolve the handle and get profile numbers
curl -H "Authorization: Bearer xc_live_..." \
  "https://xcrop.io/api/v2/users/cdixon"

# 2. Pull who they follow (paginate with the cursor in meta)
curl -H "Authorization: Bearer xc_live_..." \
  "https://xcrop.io/api/v2/users/cdixon/following?count=200"

Store the ID list, run it again tomorrow, and diff. For follower-side work there is a bulk endpoint that returns up to 5,000 follower IDs per call, which keeps a 100K-follower account inside a handful of requests instead of hundreds.

JAVASCRIPT
const res = await fetch('https://xcrop.io/api/v2/users/paradigm/followers-ids?count=5000', {
  headers: { Authorization: 'Bearer xc_live_...' },
})
const { data } = await res.json()
console.log(data.ids.length)

Cost math: following and follower results are 1 credit each, so diffing 50 accounts with 2,000 follows apiece runs 100,000 credits per full pass. On the Pro plan that is a twentieth of the monthly allowance, and you only pay full price on the first pass since later passes only need the accounts that changed.

Method, So You Can Argue With It

Reference set: about 88,000 X accounts classified as crypto funds, projects, founders or KOLs, built by starting from a hand-checked seed of well-known accounts and expanding to anyone that enough of the seed follows.
For each account we count how many of that set follow them, then weight each follower by category, standing and reach so a fund's follow counts for more than an anonymous account's.
Total follower counts come from the live profile at the time of writing and will drift.
Classification is keyword-based on bio and display name, so the occasional angel investor lands in the wrong bucket. Names in the table above were checked by hand.

The obvious limitation: this measures attention inside crypto X, nothing else. It says nothing about fund returns, and a high score means many notable accounts follow you, not that you are right.

Frequently Asked Questions

Why rank VC accounts by follow graph instead of follower count?

Follower count measures reach, not standing. An account can buy followers, and a mainstream finance account can carry millions of followers who never touch crypto. Counting how many already-notable crypto accounts follow someone measures who the industry itself pays attention to, which is much harder to fake and much more predictive of whether a follow signal means anything.

What does "notable followers" mean in the table?

It is the number of accounts inside our scored reference set (crypto funds, founders, protocols and established KOLs) that follow that account. A number like 4,300 means 4,300 accounts we already consider notable follow them, out of a reference set of roughly 88,000 accounts.

How often does the ranking change?

Slowly at the top and quickly in the middle. The top twenty barely moves month to month because follow graphs are sticky. Positions 50 to 500 shift constantly as funds pick up new analysts and as newer investors accumulate credible followers.

Can I get this data through an API?

Yes. The same follower and following data behind this ranking is available through the XCROP API: pull an account profile, its followers, or up to 5,000 follower IDs per call, then compute the overlap yourself.

Build this with the XCROP API

One API for X/Twitter data: profiles, tweets, followers, search and real-time streams. Start free with 5,000 credits/month, no card required.