1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "targets": [
12 "brandname2026",
13 "example@gmail.com",
14 "launchteam2026",
15 "productideas2026",
16 "brandlaunch2026",
17 "marketpilot2026",
18 "startupdesk2026",
19 "growthlab2026",
20 "founderops2026",
21 "trynewbrand2026",
22 "northstarteam2026",
23 "quicklaunch2026",
24 "customerdesk2026",
25 "supportpilot2026",
26 "productops2026",
27 "buildstudio2026",
28 "brandstudio2026",
29 "salesdesk2026",
30 "launchdesk2026",
31 "growthdesk2026",
32 "marketdesk2026",
33 "teamworkspace2026",
34 "brandworkspace2026",
35 "pilotworkspace2026",
36 "newproductdesk2026"
37 ]
38};
39
40
41const run = await client.actor("maximedupre/gmail-username-checker").call(input);
42
43
44console.log('Results from dataset');
45console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
46const { items } = await client.dataset(run.defaultDatasetId).listItems();
47items.forEach((item) => {
48 console.dir(item);
49});
50
51