Skip to main content
Endpoint: GET /list-members Description Use this endpoint to extract the full list of accounts that make up a Twitter/X List. It returns structured profile data for every member, including their bios, follower counts, and verification status. Who is it for?
  • Marketers: To analyze the “quality” and reach of influencers grouped within a specific category.
  • Data Engineers: To sync and enrich internal CRM records with fresh data from curated Twitter groups.
  • Lead Generation Teams: To export potential leads from highly relevant, hand-picked lists.
Use Cases * Exporting a list of “Top Web3 Developers” for targeted outreach or recruitment.
  • Comparing the audience size and profile stats of all members within a thematic list.
  • Visualizing member “cards” (avatar, name, bio) inside a custom community dashboard.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/list-members"
headers = {"ApiKey": "YOUR_API_KEY"}
params = {"list_id": "123456789"} # Required

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

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