1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "items": [{
9 "domain": "apify.com",
10 "input": "apify.com",
11 "found": True,
12 "partial": False,
13 "checkedAt": "2026-09-22T05:45:22.120Z",
14 "sourcePageUrls": [
15 {
16 "sourcePath": "/",
17 "sourceUrl": "https://apify.com/",
18 },
19 {
20 "sourcePath": "/contact",
21 "sourceUrl": "https://apify.com/contact",
22 },
23 ],
24 "emails": ["hello@apify.com"],
25 "error": None,
26 "_exampleProvenance": {
27 "sourceActorId": "CHnXcdLMha9GvwRh5",
28 "sourceRunId": "fTQG832SGP7sB6hWk",
29 "sourceDatasetId": "Gt7XpREftdsw0Ebz7",
30 "curatedPublicSnapshot": True,
31 "redaction": "Allowlisted public business/product fields only; review excerpts and social captions truncated; no reviewer identities.",
32 },
33 }] }
34
35
36run = client.actor("zinin/company-contact-route-planner").call(run_input=run_input)
37
38
39print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
40for item in client.dataset(run.default_dataset_id).iterate_items():
41 print(item)
42
43