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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "searchTerms": [
11        "apify"
12    ],
13    "searchMode": "live",
14    "maxTweets": 200,
15    "maxTweetsPerQuery": 200,
16    "maxRequestRetries": 6,
17    "handle": [
18        "@cnn"
19    ],
20    "urls": [
21        "https://twitter.com/search?q=gpt&src=typed_query&f=live"
22    ]
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("microworlds/twitter-scraper-cheap").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
37
38// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community