1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "scoredAt": "2026-08-05T00:00:00Z",
10 "requestId": "action-queue-20260804-001",
11 "items": [
12 {
13 "entityId": "nike.com",
14 "brandName": "Nike",
15 "legalName": "Nike, Inc.",
16 "domain": "nike.com",
17 "ticker": "NKE",
18 "cik": None,
19 "aliases": ["Nike, Inc."],
20 "country": "US",
21 "sourceEntityIds": ["us-dtc-product-launch-monitor:nike.com"],
22 "eventType": "product_launch",
23 "eventId": "fixture-launch-001",
24 "observedAt": "2026-08-04T10:00:00Z",
25 "effectiveAt": "2026-08-04T10:00:00Z",
26 "sourceName": "prefill_fixture",
27 "sourceUrl": "https://www.nike.com/",
28 "sourceRecordId": "fixture-launch-001",
29 "evidence": {
30 "facts": {
31 "productName": "Fixture running shoe",
32 "price": 120,
33 },
34 "excerpt": "Synthetic Store prefill evidence; not a live fetch",
35 "additionalUrls": [],
36 },
37 "confidence": 0.96,
38 "severity": "high",
39 "state": "active",
40 "dedupeKey": "prefill_fixture|nike.com|product_launch|fixture-launch-001",
41 "attribution": {
42 "status": "verified_by_source",
43 "proofType": "exact-domain",
44 "proofValue": "nike.com",
45 "sourceEntityId": "us-dtc-product-launch-monitor:nike.com",
46 },
47 "owner": {
48 "ownerType": "team",
49 "ownerId": "merchandising",
50 "label": "Merchandising",
51 "source": "customer",
52 },
53 "analysisStatus": "not_requested",
54 "demoFixture": True,
55 },
56 {
57 "entityId": "nike.com",
58 "brandName": "Nike",
59 "legalName": "Nike, Inc.",
60 "domain": "nike.com",
61 "ticker": "NKE",
62 "cik": None,
63 "aliases": ["Nike, Inc."],
64 "country": "US",
65 "sourceEntityIds": ["us-dtc-product-launch-monitor:nike.com"],
66 "eventType": "product_launch",
67 "eventId": "fixture-launch-001",
68 "observedAt": "2026-08-04T10:00:00Z",
69 "effectiveAt": "2026-08-04T10:00:00Z",
70 "sourceName": "prefill_fixture",
71 "sourceUrl": "https://www.nike.com/",
72 "sourceRecordId": "fixture-launch-001",
73 "evidence": {
74 "facts": {
75 "productName": "Fixture running shoe",
76 "price": 120,
77 },
78 "excerpt": "Synthetic Store prefill evidence; not a live fetch",
79 "additionalUrls": [],
80 },
81 "confidence": 0.96,
82 "severity": "high",
83 "state": "active",
84 "dedupeKey": "prefill_fixture|nike.com|product_launch|fixture-launch-001",
85 "attribution": {
86 "status": "verified_by_source",
87 "proofType": "exact-domain",
88 "proofValue": "nike.com",
89 "sourceEntityId": "us-dtc-product-launch-monitor:nike.com",
90 },
91 "owner": {
92 "ownerType": "team",
93 "ownerId": "merchandising",
94 "label": "Merchandising",
95 "source": "customer",
96 },
97 "analysisStatus": "not_requested",
98 "demoFixture": True,
99 },
100 ],
101}
102
103
104run = client.actor("zinin/us-brand-action-queue").call(run_input=run_input)
105
106
107print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
108for item in client.dataset(run.default_dataset_id).iterate_items():
109 print(item)
110
111