Twitter Scraper avatar
Twitter Scraper
Try for free

Pay $3.50 for 1,000 posts

View all Actors
Twitter Scraper

Twitter Scraper

quacker/twitter-scraper
Try for free

Pay $3.50 for 1,000 posts

Scrape tweets from any Twitter user profile. Top Twitter API alternative to scrape Twitter hashtags, threads, replies, followers, images, videos, statistics, and Twitter history. Export scraped data, run the scraper via API, schedule and monitor runs or integrate with other tools.

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  "handles": [
8    "Apify"
9  ],
10  "tweetsDesired": 100,
11  "proxyConfig": {
12    "useApifyProxy": true
13  }
14}
15EOF
16
17# Run the Actor using an HTTP API
18# See the full API reference at https://docs.apify.com/api/v2
19curl "https://api.apify.com/v2/acts/quacker~twitter-scraper/runs?token=$API_TOKEN" \
20  -X POST \
21  -d @input.json \
22  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 953 monthly users
  • 77 stars
  • 87.5% runs succeeded
  • 1 days response time
  • Created in Jun 2019
  • Modified about 1 month ago