Skip to main content
Endpoint: GET /score-changes Description This endpoint tracks the dynamics of a user’s Sorsa Score over time. It provides delta values for the last 7 days and 30 days, allowing you to see if an account’s influence is growing or fading within the crypto ecosystem. Who is it for?
  • VCs & Angel Investors: To identify “rising stars” and trending founders before they become mainstream.
  • Marketers: To measure the impact of recent marketing campaigns on an account’s authority.
  • Traders: To spot accounts that are rapidly gaining influence, which often precedes market moves.
Use Cases
  • Creating a “Trending Influencers” leaderboard based on weekly score growth.
  • Filtering a list of projects to find those with consistently positive 30-day momentum.
  • Monitoring your own account’s influence health.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/score-changes"
headers = {"ApiKey": "YOUR_API_KEY"}
params = {"link": "elonmusk"} # Handle, ID, or Link

response = requests.get(url, headers=headers, params=params)
print(response.json()) # Returns week_change and month_change