1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "cidade": "Florianópolis",
12 "tipos": [
13 "hotel",
14 "pousada",
15 "hostel"
16 ],
17 "maxPropriedades": 40,
18 "apenasComContato": false,
19 "resolverCNPJ": true,
20 "urlsPropriedades": [],
21 "concorrencia": 3,
22 "orcamentoDescobertaSegundos": 150,
23 "maxPaginasSrp": 8,
24 "proxyConfiguration": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ],
29 "apifyProxyCountry": "BR"
30 }
31};
32
33
34const run = await client.actor("paulovitor18/booking-brasil-hoteis").call(input);
35
36
37console.log('Results from dataset');
38console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44