Skip to main content
Endpoint: POST /check-retweet Description A specialized tool to confirm if a specific user has retweeted a particular post. It is the most reliable way to verify “Retweet to Enter” actions without manually scanning thousands of retweets. Who is it for?
  • Social Quest Builders: For “Social-Fi” apps where users earn points for sharing content.
  • Brand Managers: To ensure that brand messages are actually being amplified by partners or influencers.
  • Contest Organizers: To instantly disqualify entries that haven’t performed the required retweet.
Use Cases
  • Automating rewards for a “Retweet and Win” campaign.
  • Analyzing the viral spread of a tweet by checking if key opinion leaders (KOLs) have shared it.
  • Verifying task completion for loyalty programs.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/check-retweet"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "tweet_link": "https://x.com/Twitter/status/123456789",
    "user_link": "https://x.com/user_handle"
}

response = requests.post(url, json=payload, headers=headers)
print(response.json()) # Returns retweet status