1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "search": [
12 "laptop"
13 ],
14 "maxPostsPerProfile": 12,
15 "queries": [],
16 "expandRelated": 1,
17 "maxKeywords": 25,
18 "maxReels": 50,
19 "maxComments": 30,
20 "profiles": [],
21 "locationIds": [],
22 "concurrency": 8,
23 "maxSeedTerms": 10
24};
25
26
27const run = await client.actor("s-r/instagram-keyword-trends").call(input);
28
29
30console.log('Results from dataset');
31console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32const { items } = await client.dataset(run.defaultDatasetId).listItems();
33items.forEach((item) => {
34 console.dir(item);
35});
36
37