1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "urls": [
12 {
13 "url": "http://example.com"
14 }
15 ],
16 "extract": [
17 {
18 "field_name": "title",
19 "selector": "h1",
20 "extract_type": {
21 "type": "Text"
22 }
23 },
24 {
25 "field_name": "description",
26 "selector": "p",
27 "extract_type": {
28 "type": "Text"
29 }
30 }
31 ],
32 "proxy_settings": {
33 "useApifyProxy": true
34 }
35};
36
37
38const run = await client.actor("lukaskrivka/rust-scraper").call(input);
39
40
41console.log('Results from dataset');
42console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
43const { items } = await client.dataset(run.defaultDatasetId).listItems();
44items.forEach((item) => {
45 console.dir(item);
46});
47
48