1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "productName": "Acme Cloud",
10 "reviews": [
11 {
12 "id": "r1",
13 "text": "Easy to use, but reports are slow and sometimes crash.",
14 "rating": 3,
15 "date": "2026-07-01",
16 },
17 {
18 "id": "r2",
19 "text": "Please add a native Salesforce integration.",
20 "rating": 3,
21 "date": "2026-08-01",
22 },
23 ],
24}
25
26
27run = client.actor("egeusta/saas-voice-of-customer-battlecard").call(run_input=run_input)
28
29
30print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
31for item in client.dataset(run.default_dataset_id).iterate_items():
32 print(item)
33
34