1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "schemaVersion": "1.0",
10 "requestId": "auto",
11 "watchId": "lego-watch",
12 "watchUniverse": ["tcin:16747749"],
13 "rows": [{
14 "adapter": "target",
15 "sourceRecordId": "target-16747749",
16 "sourceName": "target_probe",
17 "observedAt": "2026-08-06T11:03:21.195Z",
18 "data": {
19 "tcin": "16747749",
20 "upc": "673419233606",
21 "productTitle": "LEGO Classic Large Creative Brick Box",
22 "brand": "LEGO",
23 "price": None,
24 "availability": None,
25 "url": "https://www.target.com/p/example/-/A-16747749",
26 },
27 "mapCents": 2999,
28 }],
29}
30
31
32run = client.actor("zinin/us-map-retail-evidence").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