Skip to main content
Endpoint: POST /check-quoted Description This endpoint checks the relationship between a user and a tweet specifically looking for Quote Tweets. It helps differentiate between a simple retweet and a “Quote,” where the user added their own commentary. Who is it for?
  • Sentiment Analysts: To find users who added their own thoughts (Quotes) rather than just blindly sharing (Retweets).
  • Campaign Analysts: To measure “High-Effort” engagement, as quoting takes more effort than retweeting.
  • Bot Hunters: To distinguish between automated retweets and organic quoted responses.
Use Cases
  • Rewarding users who provide high-quality feedback via Quote Tweets.
  • Confirming if a user “quoted” a post as part of a creative competition entry.
  • Determining the exact type of interaction a user had with a specific piece of content.
Request Example (Python)
import requests

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

response = requests.post(url, json=payload, headers=headers)
# Returns if the user quoted the tweet and includes interaction details
print(response.json())