Twitter/X Data Scraper: Tweets, Followers, Lists & More avatar
Twitter/X Data Scraper: Tweets, Followers, Lists & More

Under maintenance

Pricing

$0.20 / 1,000 results

Go to Store
Twitter/X Data Scraper: Tweets, Followers, Lists & More

Twitter/X Data Scraper: Tweets, Followers, Lists & More

Under maintenance

Developed by

Scrape Badger

Scrape Badger

Maintained by Community

Unlock Twitter/X data with ScrapeBadger, a top Apify actor for scraping tweets, followers, lists & more. Get insights without an API key. Use advanced search for tweets, scrape Twitter followers, get Twitter retweets, and more. Ideal for market research, brand monitoring & analysis.

0.0 (0)

Pricing

$0.20 / 1,000 results

0

Total users

2

Monthly users

2

Runs succeeded

>99%

Last modified

4 days ago

🚀 ScrapeBadger: Best Apify Twitter/X Data Extractor: Scrape Tweets, Lists, and More - Powerful and Affordable!

Scrapebadger Twitter Scraper

ScrapeBadger offers a powerful yet incredibly affordable way to extract Twitter/X data for various needs. Leverage our intuitive interface or the flexibility of Twitter's advanced search queries to gather tweets, user lists, and more, all starting at just $0.20 per 1,000 results.

Unlock the power of public Twitter (now X) data with ScrapeBadger's efficient Apify Actor. Whether you're a seasoned professional, a growing business, a dedicated researcher, or simply curious, our tool provides a streamlined and cost-effective way to collect valuable insights from tweets and manage Twitter list data. Get reliable access to structured information without the complexities of direct APIs for many common use cases.

🧠 Key Features

  • 🚀 Effortless Operation: Designed for ease of use, ScrapeBadger requires you to select a Mode and provide its corresponding identifier (e.g., Tweet ID for "Get Tweet by ID", search query for "Advanced Search", List ID for "Get List Tweets"). Beyond this, there are optional parameters available for further customization.
  • 🐦 Comprehensive Tweet Acquisition:
    • Fetch specific public tweets using their unique IDs with extensive data points per tweet, including likes, views, retweets, hashtags, mentions, timestamps, language, source, embedded Twitter URLs, Twitter links, and more.
    • Conduct powerful Twitter/X searches by keywords and operators, fully supporting Twitter's advanced search syntax for highly targeted results (use the query parameter in "Advanced Search" mode).
    • Analyze hashtag performance and identify trending topics.
  • 🔄 Deep Engagement Analysis: Discover users who have retweeted a specific tweet, providing valuable insights into amplification and reach. Track and analyze replies to understand conversation flow and sentiment.
  • 📄 Robust Twitter/X List Management:
    • Efficiently scrape tweets from any public Twitter/X list, allowing you to monitor specific communities or curated content streams.
    • Easily analyze the membership of Twitter/X lists, identifying key influencers and engaged users within specific niches.
  • 🔗 Extensive Link Extraction: Retrieve all URLs and links shared within collected tweets for further analysis of shared content and resources.
  • ⚙️ Flexible and Structured Output: Data is delivered in Apify's standard Dataset, ready for seamless export in various formats (CSV, JSON, etc.) for easy integration with your preferred analysis tools and workflows.
  • 🛡️ Enterprise-Grade Reliability: Built on the robust Apify platform, ScrapeBadger delivers enterprise-grade reliability in your data extraction processes, ensuring consistent and dependable results.
  • 💰 Cost-Effective Solution: Enjoy powerful Twitter/X data extraction at an unbeatable price of just $0.20 per 1,000 results. Maximize your ROI without breaking the bank.

👍 Great For

  • Data-Driven Professionals: Conduct in-depth market research, perform competitive analysis, and gain strategic insights.
  • Marketing & Growth Teams: Monitor brand mentions, track campaign performance, analyze hashtag trends, and understand audience engagement.
  • Academic Researchers: Build comprehensive datasets for social behavior studies, linguistic analysis, and trend forecasting.
  • Journalists & Media Analysts: Track breaking news in real-time, analyze public sentiment around events, and gather source material efficiently.
  • Developers & Automators: Integrate real-time Twitter/X data into your applications, build monitoring dashboards, and automate data analysis workflows.
  • Businesses of All Sizes: Gain actionable insights into your market, competitors, and customers at an affordable price point.
  • Curious Individuals: Explore public conversations, track topics of interest, and understand online dynamics.

📖 How to Use - Mode-Specific Input Parameters

When configuring the Actor, you can use either the graphical user interface (GUI) or JSON input. Here's a breakdown of the input parameters for each Mode:

ModeDescriptionKey Input Parameter (GUI)JSON Parameter Name (Type)Optional Parameters (GUI)Optional Parameters (JSON (Type))
Get a Few TweetsRetrieve data for a specific set of public tweets using their unique IDs.Tweetstweets (string / array)Max results to returnmax_results (integer)
Get One TweetRetrieve data for a single public tweet using its unique ID.IDid (string)Max results to returnmax_results (integer)
Get RetweetersDiscover the public users who have retweeted a specific tweet.IDid (string)Max results to returnmax_results (integer)
Get RepliesRetrieve the public replies to a specific tweet.IDid (string)Max results to returnmax_results (integer)
Advanced SearchPerform powerful searches on public Twitter/X data using keywords and optional filters. Leverage Twitter's advanced search syntax within the Search Query.Search Queryquery (string)Query Type (Top, Latest, Media), Max results to return`query_type (string (enum)), max_results (integer)
Get List TweetsGather all public tweets from a specified Twitter/X list.IDid (string)Max results to returnmax_results (integer)
Get List MembersCompile a list of all public members of a given Twitter/X list.IDid (string)Max results to returnmax_results (integer)

📄 Request and Response Examples:

1. Get a Few Tweets

Request (JSON):

{
"mode": "Get a Few Tweets",
"tweets": "1922985589583847691,1923033126806098079"
}

Response:

[
{
"id": "mock_tweet_id_1",
"created_at": "2025-05-15T12:00:00+00:00",
"user": {
"id": "mock_user_id_a",
"screen_name": "mock_user_a"
// ... more user fields
},
"text": "Mock tweet content A with a #hashtag and a [https://mock.url](https://mock.url).",
"lang": "en"
// ... more tweet fields
},
{
"id": "mock_tweet_id_2",
"created_at": "2025-05-15T12:05:00+00:00",
"user": {
"id": "mock_user_id_b",
"screen_name": "mock_user_b"
// ... more user fields
},
"text": "Mock tweet content B mentioning @another_user with media.",
"lang": "fr"
// ... more tweet fields
}
]

2.Get Tweet by ID

Request (JSON):

{
"id": "1922985589583847691",
"mode": "Get Tweet by ID",
"max_results": 1000
}

Response:

{
"id": "mock_tweet_id",
"created_at": "2025-05-15T12:00:00+00:00",
"user": {
"id": "mock_user_id",
"name": "Mock User",
"screen_name": "mock_user"
// ... more user fields
},
"text": "Mock tweet content.",
"lang": "en",
"retweet_count": 5,
"favorite_count": 12,
"entities": {
"hashtags": [],
"urls": []
// ... more entities
},
"view_count": "500"
// ... more tweet fields
}

3. Get Retweeters

Request (JSON):

{
"id": "1458985589583847691",
"max_results": 1,
"mode": "Get Retweeters"
}

Response:

{
"id": "....",
"created_at": "Fri Nov 18 14:52:35 +0000 2011",
"name": "...",
"screen_name": "...",
"profile_image_url": "https://pbs.twimg.com/profile_images/...",
"followers_count": 1213,
"following_count": 2654
// ... more user fields
}

4. Get Replies

Request (JSON):

{
"id": "1854985589583847691",
"mode": "Get Replies"
}

Response:

{
"id": "XXXXXXXXXXXXXXX",
"created_at_datetime": "2025-05-15T12:10:47+00:00",
"user": {
"id": "XXXXXXXXXXXXXXX",
"screen_name": "XXXXXXXXXXXXXXX"
// ... more user fields
},
"text": "@bbcweather nope, don't want any rain from the cringy atlantic. stop it and send it back, more sun and no rain thank you x ...",
"lang": "en"
// ... more reply fields
}

Request (JSON):

{
"mode": "Advanced Search",
"query": "cat",
"query_type": "Latest"
}

Response:

{
"id": "1923077489759553447",
"created_at_datetime": "2025-05-15T18:06:17+00:00",
"user": {
"id": "1848684767348459993",
"screen_name": "NyanCat"
// ... more user fields
},
"text": "@rrr @ddd @eee @dsd What happened to Varys?",
"lang": "en"
// ... more tweet fields
}

6. Get List Tweets

Request (JSON):

{
"id": "1655403389331865601",
"mode": "Get List Tweets"
}

Response:

{
"id": "1923078676966824045",
"created_at_datetime": "2025-05-15T18:11:00+00:00",
"user": {
"id": "1350036004551693206",
"screen_name": "Lokuto"
// ... more user fields
},
"text": "\"Men are the means; women are the motive.\"\n\n@naval",
"lang": "en"
// ... more tweet fields
}

7. Get List Members

Request (JSON):

{
"id": "1655403389331465601",
"mode": "Get List Members"
}

Response:

{
"id": "1488287298067207553",
"created_at": "Mon Jan 31 23:08:10 +0000 2022",
"name": "Davin Trolan",
"screen_name": "bordun",
"profile_image_url": "https://pbs.twimg.com/profile_images/1695897015509262337/RFDGVsaVqKI_normal.jpg",
"followers_count": 301946,
"following_count": 764
// ... more user fields
}

✅ Important Note: To prevent API abuse and ensure fair resource allocation, please be aware that you will get charged for requests that even return an empty results set.

✅ Why Choose ScrapeBadger Apify Twitter/X Data Extractor?

  • 🎯 Highly Targeted Data: Get precisely the Twitter/X data you need for your specific use case.
  • ⏱️ Efficient and Reliable: Built for speed and stability on the robust Apify platform.
  • 💰 Unbeatable Value: Extract powerful insights at an industry-leading price of just $0.20 per 1,000 results.
  • 🛠️ User-Friendly for All: Easy to configure and run, regardless of your technical expertise.
  • 🔗 Seamless Integration: Output data is readily available for analysis with your favorite tools.

Whether you're a professional seeking deep market intelligence, a researcher building critical datasets, or an individual exploring the world of Twitter/X, ScrapeBadger's Apify Twitter/X Data Extractor provides the power, flexibility, and affordability you need. Start unlocking valuable insights today!