1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "appName": "Acme Mobile",
10 "releases": [{
11 "version": "2.0.0",
12 "releaseDate": "2026-08-01",
13 "releaseNotes": "New sync engine and redesigned login.",
14 }],
15 "reviews": [
16 {
17 "text": "Stable and fast.",
18 "rating": 5,
19 "date": "2026-07-28",
20 "version": "1.9.0",
21 },
22 {
23 "text": "Crashes after the new update.",
24 "rating": 1,
25 "date": "2026-08-03",
26 "version": "2.0.0",
27 },
28 ],
29}
30
31
32run = client.actor("egeusta/app-release-customer-reaction-monitor").call(run_input=run_input)
33
34
35print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
36for item in client.dataset(run.default_dataset_id).iterate_items():
37 print(item)
38
39