1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "profileUrls": [
12 {
13 "url": "https://socialblade.com/youtube/handle/mrbeast"
14 }
15 ],
16 "profiles": [
17 {
18 "platform": "youtube",
19 "username": "mrbeast"
20 }
21 ],
22 "includeHistory": true,
23 "maxProfiles": 2,
24 "maxConcurrency": 2,
25 "directFirst": true,
26 "proxyConfiguration": {
27 "useApifyProxy": true,
28 "apifyProxyGroups": [
29 "RESIDENTIAL"
30 ],
31 "apifyProxyCountry": "US"
32 }
33};
34
35
36const run = await client.actor("automation-lab/socialblade-creator-stats-scraper").call(input);
37
38
39console.log('Results from dataset');
40console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
41const { items } = await client.dataset(run.defaultDatasetId).listItems();
42items.forEach((item) => {
43 console.dir(item);
44});
45
46