🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper avatar

🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper

Try for free

Pay $0.30 for 1,000 tweets

View all Actors
🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper

🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper

apidojo/tweet-scraper
Try for free

Pay $0.30 for 1,000 tweets

⚡️ Lightning-fast search, URL, list, and profile scraping, with customizable filters. At $0.30 per 1000 tweets, and 30-80 tweets per second, it is ideal for researchers, entrepreneurs, and businesses! Get comprehensive insights from Twitter (X) now!

You can access the 🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper 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://twitter.com/apify/status/1727706472623091883",
11        "https://twitter.com/apify",
12        "https://twitter.com/search?q=apify%20&src=typed_query",
13        "https://twitter.com/i/lists/78783491",
14        "https://twitter.com/elonmusk/with_replies",
15    ],
16    "searchTerms": [
17        "web scraping",
18        "scraping from:apify",
19    ],
20    "twitterHandles": [
21        "elonmusk",
22        "taylorswift13",
23    ],
24    "conversationIds": [
25        "1754067365707563045",
26        "1732037140111102460",
27    ],
28    "maxItems": 1000,
29    "sort": "Latest",
30    "tweetLanguage": "en",
31    "author": "apify",
32    "inReplyTo": "webexpo",
33    "mentioning": "elonmusk",
34    "geotaggedNear": "Los Angeles",
35    "withinRadius": "15km",
36    "geocode": "37.7764685,-122.4172004,10km",
37    "placeObjectId": "96683cc9126741d1",
38    "minimumRetweets": 5,
39    "minimumFavorites": 5,
40    "minimumReplies": 5,
41    "start": "2021-07-01",
42    "end": "2021-07-02",
43    "customMapFunction": "(object) => { return {...object} }",
44}
45
46# Run the Actor and wait for it to finish
47run = client.actor("apidojo/tweet-scraper").call(run_input=run_input)
48
49# Fetch and print Actor results from the run's dataset (if there are any)
50print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
51for item in client.dataset(run["defaultDatasetId"]).iterate_items():
52    print(item)
53
54# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper API in Python

The Apify API client for Python is the official library that allows you to use 🏯 Tweet Scraper V2 (Pay Per Result) - X / Twitter Scraper 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
  • 1.4k monthly users
  • 194 stars
  • 97.7% runs succeeded
  • 6.4 hours response time
  • Created in Nov 2023
  • Modified about 21 hours ago