1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "licenseNumbers": [
12 "333282"
13 ],
14 "companyNames": [],
15 "qualifyingPartyNames": [],
16 "cities": [],
17 "licenseType": "ALL",
18 "licenseStatus": "ALL",
19 "licenseClassification": "",
20 "scrapeDetailPage": false,
21 "scrapeComplaints": false,
22 "maxResults": 10,
23 "resultsPerPage": "50",
24 "maxConcurrency": 3,
25 "customProxyUrl": "",
26 "proxyConfiguration": {
27 "useApifyProxy": true,
28 "apifyProxyGroups": [
29 "RESIDENTIAL"
30 ]
31 }
32};
33
34
35const run = await client.actor("muhammadafzal/az-roc-contractor-license-scraper").call(input);
36
37
38console.log('Results from dataset');
39console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
40const { items } = await client.dataset(run.defaultDatasetId).listItems();
41items.forEach((item) => {
42 console.dir(item);
43});
44
45