Skip to main content
Endpoint: GET /top-followers/{user_handle} Description Retrieves the Top 20 most influential accounts (ranked by Sorsa Score) that follow a specific user. This is the fastest way to see the “Heavy Hitters” in anyone’s audience. Who is it for?
  • Business Developers: To find mutual connections or high-value targets within a specific community.
  • PR Managers: To see which major influencers might see or engage with your posts.
  • Crypto Researchers: To map out the “Social Proof” of a new project.
Use Cases
  • Seeing which Tier-1 VCs or famous founders follow a specific developer.
  • Instantly identifying the most powerful supporters of a new NFT collection.
  • Researching an account to see if it is respected by other high-authority users.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/top-followers/jack"
headers = {"ApiKey": "YOUR_API_KEY"}

response = requests.get(url, headers=headers)
top_followers = response.json() # Returns list of 20 high-score users

for user in top_followers:
    print(f"Top Follower: {user['screen_name']} (Score: {user['sorsa_score']})")