X Lists & Communities
X Lists and X Communities are two ways to organize groups of accounts on the platform. Lists are curated feeds - you (or anyone) can create a list, add up to 5,000 members, and use it as a filtered timeline. Communities are opt-in groups centered around a topic, where members post and discuss within the community space. Both are valuable data sources. A well-maintained industry list is a hand-curated roster of relevant accounts. A community is a self-selected group of people who care about a specific topic. Sorsa API provides endpoints to extract members, tweets, and followers from both, giving you structured access to these pre-filtered audiences and content feeds.Lists: Overview
An X List is a curated collection of accounts. Any user can create a list, add members, and either keep it private or make it public. Public lists are accessible via the API. Lists have two audiences: members (the accounts added to the list) and followers (users who subscribe to the list’s feed). Sorsa provides three List endpoints:| Endpoint | Method | What it returns |
|---|---|---|
GET /v3/list-members | GET | User profiles of accounts in the list |
GET /v3/list-followers | GET | User profiles of accounts following the list |
GET /v3/list-tweets | GET | Recent tweets from all list members |
Getting List Members
Endpoint:GET /v3/list-members
Returns the profiles of all accounts included in a list. You need the List ID, which you can find in the list’s URL (e.g., https://x.com/i/lists/1234567890 → ID is 1234567890).
| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | Yes | The numeric List ID. |
UsersResponse with full user profile objects.
Getting List Followers
Endpoint:GET /v3/list-followers
Returns users who subscribe to (follow) the list. These are people who actively chose to see this curated feed - a strong signal of interest in the list’s topic.
| Parameter | Type | Required | Description |
|---|---|---|---|
list_link | string | Yes | The list URL or ID. |
next_cursor | string | No | Pagination cursor. |
Getting List Tweets
Endpoint:GET /v3/list-tweets
Returns recent tweets from all members of the list, combined into a single chronological feed. This is the endpoint used in the Real-Time Monitoring guide for tracking groups of accounts with a single request.
| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | Yes | The numeric List ID. |
cursor | string | No | Pagination cursor. |
Communities: Overview
X Communities are topic-based groups where users can join, post, and interact. Unlike lists (where a curator adds members), community members opt in themselves. This makes community member lists a reliable signal of genuine interest in a topic. Sorsa provides three Community endpoints:| Endpoint | Method | What it returns |
|---|---|---|
POST /v3/community-members | POST | User profiles of community members |
POST /v3/community-tweets | POST | Tweets posted within the community |
POST /v3/community-search-tweets | POST | Tweets within the community matching a search query |
https://x.com/i/communities/1966045657589813686 → ID is 1966045657589813686.
Getting Community Members
Endpoint:POST /v3/community-members
Returns the profiles of users who have joined the community.
| Parameter | Type | Required | Description |
|---|---|---|---|
community_link | string | Yes | Community ID or full URL. |
next_cursor | string | No | Pagination cursor. |
Getting Community Tweets
Endpoint:POST /v3/community-tweets
Returns tweets posted within the community feed. You can sort by "latest" (chronological) or "popular" (engagement-ranked).
| Parameter | Type | Required | Description |
|---|---|---|---|
community_id | string | Yes | The numeric Community ID. |
order_by | string | No | "latest" (default) or "popular". |
next_cursor | string | No | Pagination cursor. |
Searching Tweets Within a Community
Endpoint:POST /v3/community-search-tweets
Search for specific keywords within a community’s posts. Useful for finding discussions about a particular subtopic, product, or event within the broader community.
| Parameter | Type | Required | Description |
|---|---|---|---|
community_link | string | Yes | Community URL or ID. |
query | string | Yes | Search keyword. |
order_by | string | No | "popular" or "latest". |
next_cursor | string | No | Pagination cursor. |
Practical Applications
Using Lists for Efficient Monitoring
The primary power of lists in the Sorsa ecosystem is efficiency. Instead of polling 50 individual accounts, you create one list with all 50 and poll/list-tweets once. This is covered in detail in the Real-Time Monitoring guide, but here is the setup checklist:
- Go to X Lists and create a new public list (private lists cannot be accessed via API).
- Add the accounts you want to track (up to 5,000).
- Copy the List ID from the URL.
- Poll
GET /v3/list-tweets?list_id=YOUR_IDat your desired interval.
| Approach | 50 accounts, 10-second polling | Requests/day |
|---|---|---|
Individual /user-tweets per account | 50 requests per cycle | 432,000 |
Single /list-tweets call | 1 request per cycle | 8,640 |
Mining Communities for Audience Data
Communities are self-selected audiences. Extracting the member list gives you a pre-qualified group of people interested in a specific topic:Finding Niche Experts via List Membership
Industry experts often appear on curated lists maintained by journalists, analysts, or organizations. If you find a list titled “AI Researchers” or “Crypto Founders” maintained by a credible curator, the member list is an expert-vetted roster:Comparing Activity Across Multiple Communities
If your niche has several active communities, compare them to find where the most valuable conversations happen:Exporting to CSV
Both member lists and tweet feeds can be exported using the same patterns from other guides:Next Steps
- Real-Time Monitoring - use
/list-tweetsfor efficient multi-account monitoring. - Target Audience Discovery - community members as a pre-qualified audience source.
- Competitor Analysis - track competitor activity via curated lists.
- Campaign Verification - verify community membership with
/check-community-member. - API Reference - full specification for all list and community endpoints.