1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "keywords": [
12 "marketing agency",
13 "recruiter",
14 "business consultant"
15 ],
16 "customDomains": [
17 "@outlook.com",
18 "@gmail.com"
19 ],
20 "patterns": [
21 "contact_at_domain",
22 "business_development",
23 "hr_recruitment",
24 "careers_hiring"
25 ],
26 "location": ""
27};
28
29
30const run = await client.actor("scraper-engine/linkedin-b2b-emails-scraper").call(input);
31
32
33console.log('Results from dataset');
34console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35const { items } = await client.dataset(run.defaultDatasetId).listItems();
36items.forEach((item) => {
37 console.dir(item);
38});
39
40