Skip to main content
Endpoint: POST /community-members Description This endpoint provides a structured list of all users who are members of a particular Twitter/X Community. It returns detailed profile data for each member, including their bio, follower counts, verification status, and account creation date. Who is it for?
  • Sales Teams: To find potential leads that are already grouped by interest or professional affiliation.
  • Data Analysts: To analyze the overlap and demographic composition of different community memberships.
  • Growth Marketers: To identify and reach out to highly targeted audiences belonging to specific niche communities.
Use Cases * Exporting a member list of an “Investors” community for targeted networking.
  • Enriching internal CRM systems with data on which communities your existing customers belong to.
  • Measuring the growth of a community by periodically tracking changes in the member list.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/community-members"
headers = {"ApiKey": "YOUR_API_KEY"}
payload = {
    "community_link": "https://x.com/i/communities/1966045657589813686", # Required
    "next_cursor": ""                                                    # Optional
}

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

for member in data.get("members", []):
    print(f"{member['name']} (@{member['screen_name']})")