1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "target_username": "bbbbyyyhhh1",
12 "start_from_position": 0,
13 "max_followers_to_scrape": 1000,
14 "instagram_cookie": [
15 {
16 "name": "test",
17 "value": "0",
18 "domain": ".instagram.com",
19 "path": "/",
20 "expires": 1764923760.811145,
21 "httpOnly": false,
22 "secure": true
23 }
24 ],
25 "proxySettings": {
26 "useApifyProxy": false
27 }
28};
29
30
31const run = await client.actor("wilcode/instagram-follower-scraper").call(input);
32
33
34console.log('Results from dataset');
35console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41