1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "targets": [
9 {
10 "app_id": "284882215",
11 "store": "apple",
12 "country": "us",
13 "company_label": "Facebook",
14 },
15 {
16 "app_id": "389801252",
17 "store": "apple",
18 "country": "us",
19 "company_label": "Instagram",
20 },
21 ] }
22
23
24run = client.actor("nexgenwatch/app-review-competitive-report").call(run_input=run_input)
25
26
27print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
28for item in client.dataset(run.default_dataset_id).iterate_items():
29 print(item)
30
31