1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "targets": [
9 "brandname2026",
10 "example@gmail.com",
11 "launchteam2026",
12 "productideas2026",
13 "brandlaunch2026",
14 "marketpilot2026",
15 "startupdesk2026",
16 "growthlab2026",
17 "founderops2026",
18 "trynewbrand2026",
19 "northstarteam2026",
20 "quicklaunch2026",
21 "customerdesk2026",
22 "supportpilot2026",
23 "productops2026",
24 "buildstudio2026",
25 "brandstudio2026",
26 "salesdesk2026",
27 "launchdesk2026",
28 "growthdesk2026",
29 "marketdesk2026",
30 "teamworkspace2026",
31 "brandworkspace2026",
32 "pilotworkspace2026",
33 "newproductdesk2026",
34 ] }
35
36
37run = client.actor("maximedupre/gmail-username-checker").call(run_input=run_input)
38
39
40print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
41for item in client.dataset(run["defaultDatasetId"]).iterate_items():
42 print(item)
43
44