Skip to main content
Endpoint: GET /list-tweets This endpoint allows you to retrieve a real-time feed of tweets from all accounts included in a specific Twitter/X List. Instead of monitoring accounts one by one, you can get a consolidated stream of content from a pre-curated group. Who is it for?
  • Social Listening Tools: To build dashboards focused on niche communities (e.g., “Crypto Analysts” or “AI Researchers”).
  • Market Analysts: To track sentiment and updates from a curated group of industry leaders or “Top Founders”.
  • Competitor Intelligence: To monitor the daily activity of a specific list of competitor accounts.
Use Cases * Building a dedicated news feed within your app based on thematic lists.
  • Analyzing engagement metrics across a group of related influencers.
  • Collecting datasets for research on specific professional user groups.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/list-tweets"
headers = {"ApiKey": "YOUR_API_KEY"}
params = {
    "list_id": "123456789", # Required
    "cursor": ""            # Optional for pagination
}

response = requests.get(url, headers=headers, params=params)
print(response.json())