🏯 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!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://twitter.com/apify/status/1727706472623091883",
9    "https://twitter.com/apify",
10    "https://twitter.com/search?q=apify%20&src=typed_query",
11    "https://twitter.com/i/lists/78783491",
12    "https://twitter.com/elonmusk/with_replies"
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}
43EOF
44
45# Run the Actor using an HTTP API
46# See the full API reference at https://docs.apify.com/api/v2
47curl "https://api.apify.com/v2/acts/apidojo~tweet-scraper/runs?token=$API_TOKEN" \
48  -X POST \
49  -d @input.json \
50  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1.3k monthly users
  • 78 stars
  • 97.9% runs succeeded
  • 5.6 hours response time
  • Created in Nov 2023
  • Modified about 22 hours ago