1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "schemaVersion": "1.0",
10 "snapshotAt": "2026-08-05T00:00:00Z",
11 "title": "Nike US signal brief",
12 "rows": [
13 {
14 "eventId": "nike-launch-001",
15 "severity": "HIGH",
16 "sourceName": "Brand newsroom",
17 "summary": "New running product announced",
18 "status": "active",
19 },
20 {
21 "eventId": "nike-price-001",
22 "severity": "MEDIUM",
23 "sourceName": "Retail monitor",
24 "summary": "List price changed for a tracked SKU",
25 "status": "resolved",
26 },
27 {
28 "eventId": "nike-review-001",
29 "severity": "LOW",
30 "sourceName": "Retail monitor",
31 "summary": "Review volume moved above the watch threshold",
32 "status": "active",
33 },
34 ],
35}
36
37
38run = client.actor("zinin/us-brand-signal-brief-composer").call(run_input=run_input)
39
40
41print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
42for item in client.dataset(run["defaultDatasetId"]).iterate_items():
43 print(item)
44
45