1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "items": [
12 {
13 "title": "Zapatilla Chunky Casual Oversize Liviana Negra",
14 "price": 49620,
15 "originalPrice": 69887.57,
16 "discountPercent": 29,
17 "currency": "ARS",
18 "imageUrl": "https://http2.mlstatic.com/D_NQ_NP_892767-MLA113860789969_062026-O.webp",
19 "seller": null
20 },
21 {
22 "title": "Zapatillas Nike Revolution 8 Para Hombre Hj9198-003",
23 "price": 129999,
24 "originalPrice": null,
25 "discountPercent": null,
26 "currency": "ARS",
27 "imageUrl": "https://http2.mlstatic.com/D_NQ_NP_714229-MLA86884461122_072025-O.webp",
28 "seller": null
29 },
30 {
31 "title": "Zapatillas Running Mujer Livianas Transpirables Deportivas",
32 "price": 20962,
33 "originalPrice": 26098.04,
34 "discountPercent": 19,
35 "currency": "ARS",
36 "imageUrl": "https://http2.mlstatic.com/D_NQ_NP_761910-CBT113527682188_072026-O.webp",
37 "seller": null
38 },
39 {
40 "title": "Zapatillas Originales Casual Dobleb Chunky Urbanas Anchas",
41 "price": 81265,
42 "originalPrice": 117999,
43 "discountPercent": 31,
44 "currency": "ARS",
45 "imageUrl": "https://http2.mlstatic.com/D_NQ_NP_705902-MLA92805827206_092025-O.webp",
46 "seller": "por AUCA ZAPATILLAS"
47 }
48 ],
49 "maxProducts": 8,
50 "secondsPerProduct": 2.5,
51 "headline": "OFERTAS",
52 "outroText": "Mirá todas las ofertas"
53};
54
55
56const run = await client.actor("synthetic.ia/mercadolibre-video-reel").call(input);
57
58
59console.log('Results from dataset');
60console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
61const { items } = await client.dataset(run.defaultDatasetId).listItems();
62items.forEach((item) => {
63 console.dir(item);
64});
65
66