X (Twitter) List Members Scraper — No Login avatar

X (Twitter) List Members Scraper — No Login

Pricing

from $1.20 / 1,000 user returneds

Go to Apify Store
X (Twitter) List Members Scraper — No Login

X (Twitter) List Members Scraper — No Login

Extract members or followers of any public X (Twitter) list. Get bio, location, verification, and follower count for every account on the list.

Pricing

from $1.20 / 1,000 user returneds

Rating

0.0

(0)

Developer

Andrew

Andrew

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

a day ago

Last modified

Share

Extract every account on any public X (Twitter) list — name, bio, location, verification, follower counts, and profile URL. No login or cookies required.

What you get

For every user on a list, the scraper returns one row with:

Profile fields

  • Username, display name, user ID
  • Bio / description
  • Location, personal URL
  • Profile picture and cover picture URLs
  • Account creation date
  • protected flag

Verification & status

  • isVerified (legacy blue check)
  • isBlueVerified (X Premium)
  • verifiedType (Business, Government, etc.)
  • canDm, isAutomated

Engagement metrics

  • Followers, following, tweets, media, likes

List context

  • scrapedFromListId — the list you queried
  • membershipmember (curated into the list) or follower (subscribed to the list)

Pagination

  • NEXT_PAGE_ID cursor saved to the Key-value store so large lists can be chained across runs

Use cases

  • Targeted lead generation — curated lists are pre-qualified audiences (e.g. "AI Founders 2026", "Crypto VCs"). Pull the full member list as warm leads.
  • Audience research — see who industry experts curate as their must-follow accounts
  • Competitor analysis — discover the audience following a niche curated list
  • Recruiting & sourcing — many recruiters maintain public talent lists; convert them into a candidate spreadsheet
  • Influencer discovery — community-maintained "best in niche" lists surface creators you'd otherwise miss
  • Network mapping — combine members and followers modes to reconstruct community graphs

How to use

  1. Enter the List ID or URL — either the numeric ID (e.g. 84839422) or the full URL (https://x.com/i/lists/84839422)
  2. Choose the ModeMembers (accounts curated into the list) or Followers (accounts subscribed to the list)
  3. Set Max Items — default 500 per run, or 0 for unlimited (stops just before the actor timeout)
  4. Run the actor — results appear in the Dataset tab, one user per row
  5. To fetch the next page, copy NEXT_PAGE_ID from the Key-value store tab and paste it into Page ID on the next run

Output format

{
"scrapedFromListId": "84839422",
"membership": "member",
"userId": "1319036828964454402",
"username": "CommunityNotes",
"name": "Community Notes",
"description": "Empowering users to create a better-informed world.",
"location": "",
"url": "",
"isVerified": false,
"isBlueVerified": true,
"verifiedType": "Business",
"protected": false,
"followersCount": 1184432,
"followingCount": 0,
"tweetsCount": 472,
"mediaCount": 113,
"likesCount": 219,
"createdAt": "2020-10-21T22:04:47.000000Z",
"profilePicture": "https://pbs.twimg.com/profile_images/...",
"coverPicture": "https://pbs.twimg.com/profile_banners/...",
"canDm": true,
"isAutomated": false,
"profileUrl": "https://x.com/CommunityNotes"
}

Pagination

X list APIs return ~20 users per page. For lists with hundreds or thousands of members, use the cursor to fetch more across multiple runs:

  1. Run the actor — when it finishes, NEXT_PAGE_ID is saved in the Key-value store tab
  2. Copy the NEXT_PAGE_ID value
  3. Start a new run with the same list and mode and paste it into the Page ID field
  4. Repeat until NEXT_PAGE_ID is null (list fully exhausted)

If a single run takes you to the actor timeout, the cursor still gets written before the run ends so you can resume on the next run.