Twitter Scraper - Unlimited Tweets, Fixed Price avatar

Twitter Scraper - Unlimited Tweets, Fixed Price

Try for free

2 hours trial then $40.00/month - No credit card required now

Go to Store
Twitter Scraper - Unlimited Tweets, Fixed Price

Twitter Scraper - Unlimited Tweets, Fixed Price

epctex/twitter-scraper
Try for free

2 hours trial then $40.00/month - No credit card required now

Extract unlimited Twitter data with fixed monthly pricing. Scrape user tweets, conversations, and search results with advanced filtering options. Features multi-lang support, geo-targeting, and detailed user analytics. Perfect for researchers, analysts, and businesses needing reliable Twitter data.

You can access the Twitter Scraper - Unlimited Tweets, Fixed Price programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "startUrls": [
10        "https://x.com/KMbappe",
11        "https://x.com/search?q=real%20madrid&src=typed_query",
12        "https://x.com/realmadrid/status/1877491794000412879",
13    ],
14    "searchTerms": [
15        "web scraping",
16        "scraping from:apify",
17    ],
18    "twitterHandles": [
19        "elonmusk",
20        "taylorswift13",
21    ],
22    "conversationIds": [
23        "1754067365707563045",
24        "1732037140111102460",
25    ],
26    "maxItems": 1000,
27    "sort": "Latest",
28    "tweetLanguage": "en",
29    "author": "apify",
30    "inReplyTo": "webexpo",
31    "mentioning": "elonmusk",
32    "geotaggedNear": "Los Angeles",
33    "withinRadius": "15km",
34    "geocode": "37.7764685,-122.4172004,10km",
35    "placeObjectId": "96683cc9126741d1",
36    "minimumRetweets": 5,
37    "minimumFavorites": 5,
38    "minimumReplies": 5,
39    "start": "2021-07-01",
40    "end": "2021-07-02",
41    "customMapFunction": "(object) => { return {...object} }",
42}
43
44# Run the Actor and wait for it to finish
45run = client.actor("epctex/twitter-scraper").call(run_input=run_input)
46
47# Fetch and print Actor results from the run's dataset (if there are any)
48print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
49for item in client.dataset(run["defaultDatasetId"]).iterate_items():
50    print(item)
51
52# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Twitter Scraper - Unlimited Tweets, Fixed Price API in Python

The Apify API client for Python is the official library that allows you to use Twitter Scraper - Unlimited Tweets, Fixed Price API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Community

Actor Metrics

  • 5 monthly users

  • 0 No bookmarks yet

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified an hour ago