Skip to main content
Endpoint: POST /community-tweets Description This endpoint retrieves a stream of tweets published within a specific Twitter/X Community. It allows you to stay updated on internal community discussions without having to browse the community manually. You can sort the results by “popular” or “latest” to prioritize high-engagement content or the most recent updates. Who is it for?
  • Content Curators: To find trending topics and popular posts within specific interest-based communities.
  • Market Researchers: To study what specific professional or hobbyist groups are discussing in private or semi-private spaces.
  • Community Managers: To monitor the health and activity level of their niche groups.
Use Cases * Building a custom “News Feed” for specific communities (e.g., “Web3 Developers” or “AI Ethics”) inside your own application.
  • Tracking the velocity of discussions around a specific event or launch within a community.
  • Aggregating community content for automated weekly digests or reports.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/community-tweets"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "community_id": "1966045657589813686", # Required
    "order_by": "popular",                # Optional: 'popular' or 'latest'
    "cursor": ""                          # Optional for pagination
}

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