Twitter Scraper Cheap avatar
Twitter Scraper Cheap
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Twitter Scraper Cheap

Twitter Scraper Cheap

microworlds/twitter-scraper-cheap

Tweet Scraper Cheap searches tweets at the speed of light (with historical data from 2006) - and parses and converts the data to structured formats: HTML table, JSON, CSV, Excel, and XML.

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  "searchTerms": [
8    "apify"
9  ],
10  "searchMode": "live",
11  "maxTweets": 200,
12  "maxTweetsPerQuery": 200,
13  "maxRequestRetries": 6,
14  "handle": [
15    "@cnn"
16  ],
17  "urls": [
18    "https://twitter.com/search?q=gpt&src=typed_query&f=live"
19  ]
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/microworlds~twitter-scraper-cheap/runs?token=$API_TOKEN" \
26  -X POST \
27  -d @input.json \
28  -H 'Content-Type: application/json'
Developer
Maintained by Community