Skip to main content
Endpoint: GET /followers-stats Description This endpoint provides a high-level breakdown of a user’s audience by categorizing their followers into segments: Influencers, Projects, VCs, and Top-tier accounts. It helps you understand the “weight” of an account’s following. Who is it for?
  • Project Founders: To prove the quality of their community to potential investors (e.g., “We are followed by 50+ VCs”).
  • Advertisers: To check if an influencer’s audience actually consists of industry professionals or just retail bots.
  • Analysts: To compare the “Institutional Interest” (VC/Project following) between two competing protocols.
Use Cases
  • Auditing a profile to see how many “Top Tier” crypto accounts are following them.
  • Generating a “Quality Score” for influencers based on the percentage of professional followers.
  • Identifying niche accounts that have a small but high-quality (VC-heavy) audience.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/followers-stats"
headers = {"ApiKey": "YOUR_API_KEY"}
params = {"link": "vitalikbuterin"}

response = requests.get(url, headers=headers, params=params)
data = response.json()
# Example output: {"influencers": 120, "vcs": 15, "projects": 45, ...}
print(data)