Skip to main content
Endpoint: POST /mentions Description This endpoint allows you to find all tweets that mention a specific Twitter/X account. It scans the platform for any posts where the target user’s handle (e.g., @elonmusk) is included. The results are paginated and return full tweet data. Who is it for?
  • PR & Brand Managers: To monitor brand mentions in real-time and respond to customer feedback or mentions.
  • Influencer Marketing Agencies: To track how often and in what context an influencer is being talked about by other users.
  • Crypto Projects: To keep an eye on project mentions, “shilling,” or community discussions across the platform.
Use Cases
  • Tracking customer complaints or praise by searching for mentions of your official support handle.
  • Identifying “Micro-Influencers” who are frequently mentioning your brand but aren’t on your radar yet.
  • Analyzing the “Share of Voice” by comparing mentions of your account versus competitors.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/mentions"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "user_link": "elonmusk", # Can be handle, ID, or full link
    "cursor": ""             # Optional for pagination
}

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

for tweet in data.get("tweets", []):
    print(f"Mention by {tweet['user']['name']}: {tweet['full_text']}")