Skip to main content
Endpoint: POST /retweets Description This endpoint returns a list of users who have retweeted a specific post. It is essential for mapping out the reach of a tweet and identifying the specific accounts responsible for its amplification. Who is it for?
  • Growth Marketers: To build a list of engaged users who are active “amplifiers” of specific topics or brands.
  • Lead Generation: To identify potential customers who showed interest in a competitor’s product by retweeting it.
  • Data Scientists: To model the propagation of information through the social graph.
Use Cases
  • Verifying participants in “Retweet to Win” contests.
  • Auditing the “quality” of an account’s reach by checking the profiles of those who retweeted them.
  • Building a network map of how a specific piece of “Alpha” or news spread through the crypto community.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/retweets"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "tweet_link": "123456789", # Tweet ID or full link
    "cursor": ""                # Optional
}

response = requests.post(url, json=payload, headers=headers)
data = response.json()

for user in data.get("users", []):
    print(f"Retweeted by: {user['name']} (@{user['screen_name']})")