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