Skip to main content
Endpoint: GET /new-followers-7d Description Returns a list of influential accounts that have started following the target user within the last 7 days. This data is pulled from the Sorsa historical database. Who is it for?
  • Project Leads: To get alerted when a major VC or influencer suddenly follows their project.
  • Competitor Intelligence: To track who is gaining new high-value attention right now.
  • Trend Spotters: To identify sudden “pivots” in interest toward specific accounts.
Use Cases
  • Setting up a Telegram bot that alerts you whenever a Tier-1 fund follows a small cap project.
  • Tracking the weekly “New Alpha” list for a specific ecosystem (e.g., New followers of Solana founders).
  • Measuring the real-time conversion of a high-profile marketing stunt or event.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/new-followers-7d"
headers = {"ApiKey": "YOUR_API_KEY"}
params = {"link": "base"}

response = requests.get(url, headers=headers, params=params)
new_followers = response.json()

for user in new_followers:
    print(f"New High-Value Follower: @{user['screen_name']}")