1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "urls": [
10 "https://www.dubicars.com/2022-mercedes-benz-gle-450-amg-uaes-very-best-example-aed-3523-per-month-892918.html",
11 "https://www.dubicars.com/2025-mercedes-benz-a45-amg-s-uaes-very-best-example-aed-3086-per-month-947959.html",
12 "https://www.dubicars.com/2022-mercedes-benz-gle-53-amg-coupe-uaes-very-best-example-aed-4147-per-month-934864.html",
13 "https://www.dubicars.com/2024-mercedes-benz-gle-63-amg-2024-mercedes-amg-gle-63-s-4matic-coupe-brand-new-full-option-european-specs-800316.html",
14 "https://www.dubicars.com/2026-mercedes-benz-g63-amg-2026-mercedes-amg-g-63-double-night-package-40l-v8-biturbo-585-hp-979576.html",
15 ],
16 "ignore_url_failures": True,
17}
18
19
20run = client.actor("alexist/dubicars-automotive-details-scraper").call(run_input=run_input)
21
22
23print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
24for item in client.dataset(run.default_dataset_id).iterate_items():
25 print(item)
26
27