1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "start_urls": [
12 {
13 "url": "https://www.screwfix.com/c/building-doors/timber/cat16400002"
14 },
15 {
16 "url": "https://shop.screwfix.eu/es-es/collections/accesorios-de-herramientas-electricas-hojas-y-herramientas-de-corte/products/freud-hoja-de-sierra-de-mesa-para-madera-de-250-x-30-mm-2440t-pack-de-2-232kj"
17 }
18 ],
19 "max_results_pages_per_category": 1,
20 "max_products_per_category_results_page": 1,
21 "max_review_pages": 1,
22 "max_question_answer_pages": 1
23};
24
25
26const run = await client.actor("datasaurus/screwfix").call(input);
27
28
29console.log('Results from dataset');
30console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
31const { items } = await client.dataset(run.defaultDatasetId).listItems();
32items.forEach((item) => {
33 console.dir(item);
34});
35
36