๐Ÿฏ Twitter (X) List Scraper (Pay Per Result) avatar
๐Ÿฏ Twitter (X) List Scraper (Pay Per Result)
Try for free

Pay $0.30 for 1,000 tweets

View all Actors
๐Ÿฏ Twitter (X) List Scraper (Pay Per Result)

๐Ÿฏ Twitter (X) List Scraper (Pay Per Result)

apidojo/twitter-list-scraper
Try for free

Pay $0.30 for 1,000 tweets

Discover the Twitter (X) List Scraper you've been looking for! Find the ultimate tool for extracting Tweets List from X / Twitter! It offers unparalleled speed and comprehensiveness, ensuring lightning-fast extraction of Tweets.

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/i/lists/78783491"
9  ],
10  "listIds": [
11    "1657850814910590977",
12    "1199504381886050304"
13  ],
14  "maxItems": 1000,
15  "customMapFunction": "(object) => { return {...object} }"
16}
17EOF
18
19# Run the Actor using an HTTP API
20# See the full API reference at https://docs.apify.com/api/v2
21curl "https://api.apify.com/v2/acts/apidojo~twitter-list-scraper/runs?token=$API_TOKEN" \
22  -X POST \
23  -d @input.json \
24  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 18 monthly users
  • 2 stars
  • 61.2% runs succeeded
  • Created in Nov 2023
  • Modified about 12 hours ago