1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "term": "game",
12 "startUrls": [
13 "https://apps.apple.com/us/app/street-fighter-duel/id6444880223",
14 "https://apps.apple.com/us/developer/crunchyroll-games-llc/id1447891276"
15 ],
16 "appIds": [
17 "6444880223"
18 ],
19 "bundleIds": [
20 "com.crunchyroll.sfduel"
21 ],
22 "developerIds": [
23 "1447891276"
24 ],
25 "country": "us",
26 "lang": "en-us",
27 "page": 1,
28 "maxItems": 50,
29 "customMapFunction": (object) => { return {...object} }
30};
31
32
33const run = await client.actor("epctex/appstore-scraper").call(input);
34
35
36console.log('Results from dataset');
37console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43