1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "startUrls": [
12 {
13 "url": "https://example.com"
14 }
15 ],
16 "schema": {
17 "type": "object",
18 "properties": {
19 "title": {
20 "type": "string"
21 },
22 "price": {
23 "type": "number"
24 }
25 },
26 "required": [
27 "title"
28 ]
29 }
30};
31
32
33const run = await client.actor("roseapps/schema-extractor").call(input);
34
35
36console.log('Results from dataset');
37console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43