Skip to main content
Endpoint: POST /tweet-info Description This endpoint retrieves comprehensive metadata for a single tweet. It goes beyond the basic text, providing engagement metrics (likes, retweets, quotes), media attachments, and detailed author information in a single call. Who is it for?
  • Content Analysts: To pull exact engagement numbers for specific high-performing posts.
  • Social Media Managers: To monitor how a specific announcement is performing in terms of reach and interactions.
  • Developers: To display rich tweet previews within their own applications or dashboards.
Use Cases
  • Fetching the full text and high-resolution media URLs of a viral post.
  • Tracking the precise “Bookmark” and “View” counts of a tweet.
  • Verifying the timestamp and source of a specific piece of information.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/tweet-info"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "tweet_link": "https://x.com/Twitter/status/123456789" # Supports links or IDs
}

response = requests.post(url, json=payload, headers=headers)
tweet = response.json()
print(f"Tweet by {tweet['user']['name']}: {tweet['full_text']}")
print(f"Stats: {tweet['favorite_count']} Likes, {tweet['retweet_count']} Retweets