Extract members, tweets, and followers from X Lists and Communities via the Sorsa API.
X Lists and X Communities are two ways to organize groups of accounts on the platform. Sorsa API provides endpoints to extract members, tweets, and followers from both. This page is the endpoint reference.Note: For strategic context, cost math, and end-to-end monitoring workflows, see the X List API guide on the blog.
X Communities deprecation notice X is shutting down Communities on May 30, 2026 (announced by head of product Nikita Bier in April 2026). The three Community endpoints below continue to work until that date and are kept here for completeness. Use Lists for any new monitoring workflow.
Lists
An X List is a public collection of up to 5,000 accounts. Lists have two audiences:- Members: accounts added to the list by the curator.
- Followers (subscribers): users who subscribed to read the List timeline.
| Endpoint | Method | Returns | Page size |
|---|---|---|---|
/v3/list-members | GET | User profiles of accounts in the list | up to 200 |
/v3/list-followers | GET | User profiles of accounts following the list | up to 200 |
/v3/list-tweets | GET | Combined chronological feed from list members | ~20 |
https://x.com/i/lists/1234567890 → ID is 1234567890.
Get List Members
GET /v3/list-members
| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | Yes | Numeric List ID. |
next_cursor | integer | No | Pagination cursor from a previous response. |
Get List Followers
GET /v3/list-followers
| Parameter | Type | Required | Description |
|---|---|---|---|
list_link | string | Yes | List URL or numeric ID. |
next_cursor | string | No | Pagination cursor. |
Get List Tweets
GET /v3/list-tweets
Returns recent tweets from all list members in a single chronological feed. This is the endpoint used in the Real-Time Monitoring workflow for tracking groups of accounts with a single request instead of polling each account separately.
| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | Yes | Numeric List ID. |
next_cursor | string | No | Pagination cursor. |
Communities
Communities will be discontinued on May 30, 2026. The endpoints below remain available until that date.X Communities are topic-based groups where users opt in to post and read within a dedicated space. Member rosters are a strong interest signal because membership is self-selected.
| Endpoint | Method | Returns | Page size |
|---|---|---|---|
/v3/community-members | POST | Community member profiles | ~20 |
/v3/community-tweets | POST | Tweets posted inside the community | ~20 |
/v3/community-search-tweets | POST | Keyword search inside the community | ~20 |
https://x.com/i/communities/1966045657589813686 → ID is 1966045657589813686.
Private Communities are not API-accessible.
Get Community Members
POST /v3/community-members
| Parameter | Type | Required | Description |
|---|---|---|---|
community_link | string | Yes | Community ID or full URL. |
next_cursor | string | No | Pagination cursor. |
Get Community Tweets
POST /v3/community-tweets
| Parameter | Type | Required | Description |
|---|---|---|---|
community_id | string | Yes | Numeric Community ID. |
order | string | No | "latest" (default) or "popular". |
next_cursor | string | No | Pagination cursor. |
Search Community Tweets
POST /v3/community-search-tweets
| Parameter | Type | Required | Description |
|---|---|---|---|
community_link | string | Yes | Community ID or full URL. |
query | string | Yes | Search keyword. |
order | string | No | "popular" or "latest". |
next_cursor | string | No | Pagination cursor. |
/check-community-member endpoint instead.
Exporting to CSV
User and tweet feeds from any of the endpoints above can be exported with a single helper. For users:id, full_text, created_at, likes_count, retweet_count, and user.username.
Related
- X List API guide: strategy, cost math, use cases
- Real-Time Monitoring: polling patterns for
/list-tweets - Target Audience Discovery: using lists and communities for audience research
- Marketing Campaign Verification: community membership checks
- Optimizing API Usage: request batching and rate-limit handling