Skip to main content
Endpoint: GET /check-comment Description This endpoint verifies whether a specific user has replied to a given tweet. It searches through the user’s recent interactions to confirm if a comment exists, providing a definitive true/false status. Who is it for?
  • Marketing Agencies: To automate verification of “Reply to this tweet” requirements in social media contests.
  • Community Managers: To track active engagement and reward users who participate in discussions.
  • Airdrop/Quest Platforms: To programmatically validate task completion for users participating in crypto campaigns.
Use Cases
  • Validating that a user left a specific feedback comment on a product announcement.
  • Filtering a whitelist of participants for a giveaway based on their active replies.
  • Building an engagement dashboard that tracks how often fans reply to your posts.
Request Example (Python)
import requests

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

response = requests.get(url, headers=headers, params=params)
# Returns {"success": true, "commented": true/false}
print(response.json())